From 89c7cad4b84ea756f171592f66fe2c0b1ef63dfe Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Thu, 8 Feb 2024 16:22:03 +0100 Subject: [PATCH] fixup! dual-fund: add `require_confirmed_inputs` to RBF flows --- wallet/wallet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/wallet.c b/wallet/wallet.c index 91ed55ca8..d864cc5a9 100644 --- a/wallet/wallet.c +++ b/wallet/wallet.c @@ -2287,7 +2287,7 @@ void wallet_channel_save(struct wallet *w, struct channel *chan) " remote_cltv_expiry_delta=?," // 49 " remote_htlc_minimum_msat=?," // 50 " remote_htlc_maximum_msat=?," // 51 - " last_stable_connection=?" // 52 + " last_stable_connection=?," // 52 " require_confirm_inputs_remote=?" // 53 " WHERE id=?")); // 54 db_bind_u64(stmt, chan->their_shachain.id);