| 666 | } |
| 667 | |
| 668 | static char *insufficient_err_msg(const tal_t *ctx, |
| 669 | char *error, |
| 670 | struct wally_psbt *psbt) |
| 671 | { |
| 672 | return tal_fmt(tmpctx, "Insufficiently funded funding tx, %s. %s", |
| 673 | error, fmt_wally_psbt(tmpctx, psbt)); |
| 674 | } |
| 675 | |
| 676 | static char *check_balances(const tal_t *ctx, |
| 677 | struct state *state, |
no test coverage detected