mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-19 05:44:12 +01:00
wallet: really allow broken migrations.
e778ebb9af
("wallet: only log broken if we
have duplicate scids in channels.") downgraded the fatal() to a broken
log message, but the user reports it still won't start up.
Perhaps they're hitting the fatal() outside the loop? (And we're
not getting that output).
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
b5c614069b
commit
6c4a438afd
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user