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

Function IsPAKValidTx

src/primitives/pak.cpp:202–210  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

200}
201
202bool IsPAKValidTx(const CTransaction& tx, const CPAKList& paklist, const uint256& parent_gen_hash, const CAsset& peg_asset)
203{
204 for (const auto& txout : tx.vout) {
205 if (!IsPAKValidOutput(txout, paklist, parent_gen_hash, peg_asset)) {
206 return false;
207 }
208 }
209 return true;
210}

Callers 4

removeForReorgMethod · 0.85
removeForBlockMethod · 0.85
PreChecksMethod · 0.85
ConnectBlockMethod · 0.85

Calls 1

IsPAKValidOutputFunction · 0.85

Tested by

no test coverage detected