| 438 | } |
| 439 | |
| 440 | static void handle_error_channel(struct channel *channel, |
| 441 | const u8 *msg) |
| 442 | { |
| 443 | if (!fromwire_channeld_send_error_reply(msg)) { |
| 444 | channel_internal_error(channel, "bad send_error_reply: %s", |
| 445 | tal_hex(tmpctx, msg)); |
| 446 | return; |
| 447 | } |
| 448 | |
| 449 | forget(channel); |
| 450 | } |
| 451 | |
| 452 | static void handle_local_private_channel(struct channel *channel, const u8 *msg) |
| 453 | { |
no test coverage detected