| 118 | } |
| 119 | |
| 120 | static void cleanup_peer_pending_opens(struct command *cmd, |
| 121 | const struct node_id *id) |
| 122 | { |
| 123 | struct pending_open *i, *next; |
| 124 | list_for_each_safe(&pending_opens, i, next, list) { |
| 125 | if (node_id_eq(&i->peer_id, id)) { |
| 126 | unreserve_psbt(cmd, i); |
| 127 | } |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | static struct command_result * |
| 132 | command_hook_cont_psbt(struct command *cmd, struct wally_psbt *psbt) |
no test coverage detected