| 456 | } |
| 457 | |
| 458 | static void handle_failure_fatal(struct state *state, u8 *msg) |
| 459 | { |
| 460 | char *err; |
| 461 | |
| 462 | if (!fromwire_dualopend_fail(msg, msg, &err)) |
| 463 | master_badmsg(fromwire_peektype(msg), msg); |
| 464 | |
| 465 | /* We're gonna fail here */ |
| 466 | open_err_fatal(state, "%s", err); |
| 467 | } |
| 468 | |
| 469 | static void check_channel_id(struct state *state, |
| 470 | struct channel_id *id_in, |
no test coverage detected