| 443 | } |
| 444 | |
| 445 | static void handle_our_shutdown(struct state *state, u8 *msg) |
| 446 | { |
| 447 | u8 *scriptpubkey; |
| 448 | |
| 449 | if (!fromwire_dualopend_send_shutdown(tmpctx, msg, &scriptpubkey)) |
| 450 | master_badmsg(fromwire_peektype(msg), msg); |
| 451 | |
| 452 | if (!state->shutdown_sent[LOCAL]) |
| 453 | send_shutdown(state, scriptpubkey); |
| 454 | |
| 455 | billboard_update(state); |
| 456 | } |
| 457 | |
| 458 | static void handle_failure_fatal(struct state *state, u8 *msg) |
| 459 | { |
no test coverage detected