Cleans up a txid by doing `txdiscard` on it. */
| 195 | |
| 196 | /* Cleans up a txid by doing `txdiscard` on it. */ |
| 197 | static void |
| 198 | mfc_cleanup_psbt(struct command *cmd, |
| 199 | struct multifundchannel_cleanup *cleanup, |
| 200 | struct wally_psbt *psbt) |
| 201 | { |
| 202 | unreserve_call(cmd, psbt, mfc_cleanup_done, cleanup); |
| 203 | } |
| 204 | |
| 205 | /* Cleans up a `openchannel_init` by doing `openchannel_abort` for the channel*/ |
| 206 | static void |
no test coverage detected