MCPcopy Create free account
hub / github.com/ElementsProject/elements / IsFullyBlinded

Method IsFullyBlinded

src/psbt.cpp:350–358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

348}
349
350bool PartiallySignedTransaction::IsFullyBlinded() const
351{
352 for (const PSBTOutput& out : outputs) {
353 if (out.IsBlinded() && !out.IsFullyBlinded()) {
354 return false;
355 }
356 }
357 return true;
358}
359
360bool PSBTInput::IsNull() const
361{

Callers 6

VerifyBlindProofsFunction · 0.80
BlindPSBTFunction · 0.80
MergeMethod · 0.80
walletprocesspsbtFunction · 0.80
combinepsbtFunction · 0.80
AnalyzePSBTFunction · 0.80

Calls 4

IsBlindedMethod · 0.80
IsNullMethod · 0.45
emptyMethod · 0.45
IsValidMethod · 0.45

Tested by

no test coverage detected