| 2869 | } |
| 2870 | |
| 2871 | static void openchannel_update_valid_psbt(struct psbt_validator *pv) |
| 2872 | { |
| 2873 | u8 *msg; |
| 2874 | assert(pv->cmd); |
| 2875 | pv->channel->open_attempt->cmd = pv->cmd; |
| 2876 | |
| 2877 | msg = towire_dualopend_psbt_updated(NULL, pv->psbt); |
| 2878 | subd_send_msg(pv->channel->owner, take(msg)); |
| 2879 | } |
| 2880 | |
| 2881 | static void openchannel_invalid_psbt(struct psbt_validator *pv, const char *err_msg) |
| 2882 | { |
no test coverage detected