| 200 | } |
| 201 | |
| 202 | bool 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 | } |
no test coverage detected