| 529 | } |
| 530 | |
| 531 | void bitcoin_tx_finalize(struct bitcoin_tx *tx) |
| 532 | { |
| 533 | elements_tx_add_fee_output(tx); |
| 534 | assert(bitcoin_tx_check(tx)); |
| 535 | } |
| 536 | |
| 537 | struct bitcoin_tx *bitcoin_tx_with_psbt(const tal_t *ctx, struct wally_psbt *psbt STEALS) |
| 538 | { |
no test coverage detected