diff options
| author | Pieter Wuille <[email protected]> | 2020-10-09 11:44:06 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2020-10-12 12:14:53 -0700 |
| commit | fd9a0060f028a4c01bd88f58777dea34bdcbafd1 (patch) | |
| tree | 6fc17dc1233aa9e4ab056b6a1d22046bf7ebd3a8 /src/primitives | |
| parent | Delete limitedmap as it is unused now (diff) | |
| download | discoin-fd9a0060f028a4c01bd88f58777dea34bdcbafd1.tar.xz discoin-fd9a0060f028a4c01bd88f58777dea34bdcbafd1.zip | |
Report and verify expirations
Diffstat (limited to 'src/primitives')
| -rw-r--r-- | src/primitives/transaction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h index 77cb1781a..00544f64f 100644 --- a/src/primitives/transaction.h +++ b/src/primitives/transaction.h @@ -399,8 +399,8 @@ template <typename Tx> static inline CTransactionRef MakeTransactionRef(Tx&& txI /** A generic txid reference (txid or wtxid). */ class GenTxid { - const bool m_is_wtxid; - const uint256 m_hash; + bool m_is_wtxid; + uint256 m_hash; public: GenTxid(bool is_wtxid, const uint256& hash) : m_is_wtxid(is_wtxid), m_hash(hash) {} bool IsWtxid() const { return m_is_wtxid; } |