| 47 | static LIST_HEAD(unreleased_txs); |
| 48 | |
| 49 | static struct wally_psbt *json_tok_psbt(const tal_t *ctx, |
| 50 | const char *buffer, |
| 51 | const jsmntok_t *tok) |
| 52 | { |
| 53 | return psbt_from_b64(ctx, buffer + tok->start, tok->end - tok->start); |
| 54 | } |
| 55 | |
| 56 | static struct command_result *param_outputs(struct command *cmd, |
| 57 | const char *name, |
no test coverage detected