mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-18 05:12:45 +01:00
wallet: Do not consider OPENINGD channels as active
Still writing the channel since some of the channel setup parameters depends on `chan->id` to be set. If we later set the `chan->id` signatures fail. This prevents OPENINGD channels showing up after restarting. Signed-off-by: Christian Decker <decker.christian@gmail.com>
This commit is contained in:
parent
3fdb055606
commit
4f5c47b43b
@ -607,7 +607,7 @@ bool wallet_channels_load_active(const tal_t *ctx, struct wallet *w, struct list
|
||||
/* Channels are active if they have reached at least the
|
||||
* opening state and they are not marked as complete */
|
||||
sqlite3_stmt *stmt = db_query(
|
||||
__func__, w->db, "SELECT %s FROM channels WHERE state >= %d AND state != %d;",
|
||||
__func__, w->db, "SELECT %s FROM channels WHERE state > %d AND state != %d;",
|
||||
channel_fields, OPENINGD, CLOSINGD_COMPLETE);
|
||||
|
||||
int count = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user