| 542 | } |
| 543 | |
| 544 | static void handle_failure_fatal(struct state *state, u8 *msg) |
| 545 | { |
| 546 | char *err; |
| 547 | |
| 548 | if (!fromwire_dualopend_fail(msg, msg, &err)) |
| 549 | master_badmsg(fromwire_peektype(msg), msg); |
| 550 | |
| 551 | /* We're gonna fail here */ |
| 552 | open_err_fatal(state, "%s", err); |
| 553 | } |
| 554 | |
| 555 | static void check_channel_id(struct state *state, |
| 556 | struct channel_id *id_in, |
no test coverage detected