From 586b9aa7428e9f76f6c36cb26ad9aa143e8aee77 Mon Sep 17 00:00:00 2001 From: niftynei Date: Wed, 9 Sep 2020 19:40:29 +0930 Subject: [PATCH] spec-update: handle tx_signatures in channeld (accepter side only,really) --- channeld/channeld.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/channeld/channeld.c b/channeld/channeld.c index 97a54ad2d..a48df2b0b 100644 --- a/channeld/channeld.c +++ b/channeld/channeld.c @@ -2104,8 +2104,11 @@ static void peer_in(struct peer *peer, const u8 *msg) case WIRE_ONION_MESSAGE: handle_onion_message(peer, msg); return; - /* FIXME: handle this here */ + case WIRE_TX_SIGNATURES: + /* FIXME: verify sigs + weights, broadcast funding tx */ + return; case WIRE_INIT_RBF: + /* FIXME: handle this here */ break; #endif @@ -2121,7 +2124,6 @@ static void peer_in(struct peer *peer, const u8 *msg) case WIRE_TX_ADD_OUTPUT: case WIRE_TX_REMOVE_OUTPUT: case WIRE_TX_COMPLETE: - case WIRE_TX_SIGNATURES: case WIRE_OPEN_CHANNEL2: case WIRE_ACCEPT_CHANNEL2: case WIRE_BLACKLIST_PODLE: