Browse Source

bitcoin/tx: trivial cleanups.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
travis-experimental
Rusty Russell 4 years ago
parent
commit
67fbb349b6
  1. 4
      bitcoin/tx.c

4
bitcoin/tx.c

@ -478,12 +478,10 @@ struct bitcoin_tx *bitcoin_tx(const tal_t *ctx,
if (chainparams->is_elements)
output_count += 1;
wally_tx_init_alloc(WALLY_TX_VERSION_2, 0, input_count, output_count,
wally_tx_init_alloc(WALLY_TX_VERSION_2, nlocktime, input_count, output_count,
&tx->wtx);
tal_add_destructor(tx, bitcoin_tx_destroy);
tx->wtx->locktime = nlocktime;
tx->wtx->version = 2;
tx->chainparams = chainparams;
tx->psbt = new_psbt(tx, tx->wtx);

Loading…
Cancel
Save