| 1511 | } |
| 1512 | |
| 1513 | static void init_changeset(struct tx_state *tx_state, struct wally_psbt *psbt) |
| 1514 | { |
| 1515 | /* We need an empty to compare to */ |
| 1516 | struct wally_psbt *empty_psbt = create_psbt(tmpctx, 0, 0, 0); |
| 1517 | |
| 1518 | tx_state->changeset = psbt_get_changeset(tx_state, empty_psbt, psbt); |
| 1519 | } |
| 1520 | |
| 1521 | static void handle_tx_abort(struct state *state, u8 *msg) |
| 1522 | { |
no test coverage detected