| 2879 | } |
| 2880 | |
| 2881 | static void openchannel_invalid_psbt(struct psbt_validator *pv, const char *err_msg) |
| 2882 | { |
| 2883 | assert(pv->cmd); |
| 2884 | was_pending(command_fail(pv->cmd, |
| 2885 | FUNDING_PSBT_INVALID, |
| 2886 | "%s", err_msg)); |
| 2887 | } |
| 2888 | |
| 2889 | static struct channel_inflight *find_inprogress_inflight(struct channel *channel, |
| 2890 | struct wally_psbt *psbt) |
nothing calls this directly
no test coverage detected