| 905 | #endif /* DEVELOPER */ |
| 906 | |
| 907 | static u8 *psbt_to_tx_sigs_msg(const tal_t *ctx, |
| 908 | struct state *state, |
| 909 | const struct wally_psbt *psbt) |
| 910 | { |
| 911 | const struct witness_stack **ws = |
| 912 | psbt_to_witness_stacks(tmpctx, psbt, |
| 913 | state->our_role); |
| 914 | |
| 915 | return towire_tx_signatures(ctx, &state->channel_id, |
| 916 | &state->tx_state->funding.txid, |
| 917 | ws); |
| 918 | } |
| 919 | |
| 920 | static void handle_tx_sigs(struct state *state, const u8 *msg) |
| 921 | { |
no test coverage detected