mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-02 18:35:00 +01:00
spec-update: handle tx_signatures in channeld (accepter side only,really)
This commit is contained in:
parent
aef5a5a0e5
commit
586b9aa742
1 changed files with 4 additions and 2 deletions
|
@ -2104,8 +2104,11 @@ static void peer_in(struct peer *peer, const u8 *msg)
|
||||||
case WIRE_ONION_MESSAGE:
|
case WIRE_ONION_MESSAGE:
|
||||||
handle_onion_message(peer, msg);
|
handle_onion_message(peer, msg);
|
||||||
return;
|
return;
|
||||||
/* FIXME: handle this here */
|
case WIRE_TX_SIGNATURES:
|
||||||
|
/* FIXME: verify sigs + weights, broadcast funding tx */
|
||||||
|
return;
|
||||||
case WIRE_INIT_RBF:
|
case WIRE_INIT_RBF:
|
||||||
|
/* FIXME: handle this here */
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -2121,7 +2124,6 @@ static void peer_in(struct peer *peer, const u8 *msg)
|
||||||
case WIRE_TX_ADD_OUTPUT:
|
case WIRE_TX_ADD_OUTPUT:
|
||||||
case WIRE_TX_REMOVE_OUTPUT:
|
case WIRE_TX_REMOVE_OUTPUT:
|
||||||
case WIRE_TX_COMPLETE:
|
case WIRE_TX_COMPLETE:
|
||||||
case WIRE_TX_SIGNATURES:
|
|
||||||
case WIRE_OPEN_CHANNEL2:
|
case WIRE_OPEN_CHANNEL2:
|
||||||
case WIRE_ACCEPT_CHANNEL2:
|
case WIRE_ACCEPT_CHANNEL2:
|
||||||
case WIRE_BLACKLIST_PODLE:
|
case WIRE_BLACKLIST_PODLE:
|
||||||
|
|
Loading…
Add table
Reference in a new issue