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

Function psbt_is_finalized

bitcoin/psbt.c:176–182  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174}
175
176bool psbt_is_finalized(const struct wally_psbt *psbt)
177{
178 size_t is_finalized;
179 int wally_err = wally_psbt_is_finalized(psbt, &is_finalized);
180 assert(wally_err == WALLY_OK);
181 return is_finalized ? true : false;
182}
183
184struct wally_psbt_input *psbt_add_input(struct wally_psbt *psbt,
185 const struct wally_tx_input *input,

Callers 4

psbt_finalizeFunction · 0.85
psbt_final_txFunction · 0.85
json_sendpsbtFunction · 0.85
json_openchannel_signedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected