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

Function psbt_is_finalized

bitcoin/psbt.c:106–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104}
105
106bool psbt_is_finalized(const struct wally_psbt *psbt)
107{
108 size_t is_finalized;
109 int wally_err = wally_psbt_is_finalized(psbt, &is_finalized);
110 assert(wally_err == WALLY_OK);
111 return is_finalized ? true : false;
112}
113
114struct wally_psbt_input *psbt_add_input(struct wally_psbt *psbt,
115 struct wally_tx_input *input,

Callers 3

psbt_finalizeFunction · 0.85
psbt_final_txFunction · 0.85
json_openchannel_signedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected