| 74 | vin(tx.vin), vout(tx.vout), nVersion(tx.nVersion), nLockTime(tx.nLockTime), witness(tx.witness) {} |
| 75 | |
| 76 | uint256 CMutableTransaction::GetHash() const |
| 77 | { |
| 78 | return SerializeHash(*this, SER_GETHASH, SERIALIZE_TRANSACTION_NO_WITNESS); |
| 79 | } |
| 80 | |
| 81 | uint256 CTransaction::ComputeHash() const |
| 82 | { |
no test coverage detected