| 44 | static LIST_HEAD(unreleased_txs); |
| 45 | |
| 46 | static struct wally_psbt *json_tok_psbt(const tal_t *ctx, |
| 47 | const char *buffer, |
| 48 | const jsmntok_t *tok) |
| 49 | { |
| 50 | return psbt_from_b64(ctx, buffer + tok->start, tok->end - tok->start); |
| 51 | } |
| 52 | |
| 53 | struct txprepare_cleanup { |
| 54 | char *error_json; |
no test coverage detected