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