MCPcopy Create free account
hub / github.com/ElementsProject/lightning / psbt_input_set_utxo

Function psbt_input_set_utxo

bitcoin/psbt.c:452–461  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

450}
451
452void psbt_input_set_utxo(struct wally_psbt *psbt, size_t in,
453 const struct wally_tx *prev_tx)
454{
455 int wally_err;
456 tal_wally_start();
457 wally_err = wally_psbt_input_set_utxo(&psbt->inputs[in],
458 prev_tx);
459 tal_wally_end(psbt);
460 assert(wally_err == WALLY_OK);
461}
462
463void psbt_input_set_outpoint(struct wally_psbt *psbt, size_t in,
464 struct bitcoin_outpoint outpoint)

Callers 2

psbt_using_utxosFunction · 0.85
splice_initiatorFunction · 0.85

Calls 2

tal_wally_startFunction · 0.85
tal_wally_endFunction · 0.85

Tested by

no test coverage detected