(tx)
| 861 | pass |
| 862 | |
| 863 | def GetLegacySigOpCount(tx): |
| 864 | nSigOps = 0 |
| 865 | for txin in tx.vin: |
| 866 | nSigOps += txin.scriptSig.GetSigOpCount(False) |
| 867 | for txout in tx.vout: |
| 868 | nSigOps += txout.scriptPubKey.GetSigOpCount(False) |
| 869 | return nSigOps |
| 870 | |
| 871 | |
| 872 | def CheckBlock(block, fCheckPoW = True, fCheckMerkleRoot = True, cur_time=None): |
no test coverage detected