-
Notifications
You must be signed in to change notification settings - Fork 913
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
23.02 Startup - Large Node - SCID issue #6063
Comments
Looks like this is similar to my problem with the previous release: |
Hmm, I suspect we're hitting the new fatal check, does this help? diff --git a/wallet/db.c b/wallet/db.c
index 5a5a1c78f..ea2e2d067 100644
--- a/wallet/db.c
+++ b/wallet/db.c
@@ -1532,8 +1532,8 @@ static void migrate_channels_scids_as_integers(struct lightningd *ld,
}
if (changes != tal_count(scids))
- fatal("migrate_channels_scids_as_integers: only converted %zu of %zu scids!",
- changes, tal_count(scids));
+ log_broken(ld->log, "migrate_channels_scids_as_integers: only converted %zu of %zu scids!",
+ changes, tal_count(scids));
/* FIXME: We cannot use ->delete_columns to remove
* short_channel_id, as other tables reference the channels |
Currently attempting to compile from source with patch applied. Running into errors. This is why I wait for bin files from releases. |
Okay I pulled from git, had to disable rust to get this to build on Ubuntu 20.04. Can confirm changes allow my node to start up successfully. Thank you!
|
Hi there. I attempted to download and use the Ubuntu 20.04 binary for upgrading my node. After allowing the database upgrade I get the following error:
Once this error occurs the startup of the node fails.
My node:
https://1ml.com/node/02a20247f515d978cbf9e9ce6a4287b5931d724068b7b88bbaead6380db3dd8e9a
Thanks
The text was updated successfully, but these errors were encountered: