diff options
author | glozow <gloriajzhao@gmail.com> | 2021-10-21 16:15:01 +0100 |
---|---|---|
committer | glozow <gloriajzhao@gmail.com> | 2021-10-21 16:26:59 +0100 |
commit | d50fbd4c5b4bc72415854d582cedf94541a46983 (patch) | |
tree | eea6b3b73084f2515ba8c575de4f6548dfa91d25 /src/primitives | |
parent | f9ad4d51e3dbb84036762f5a9e0c6d712e49d1be (diff) |
create explicit GenTxid::{Txid, Wtxid} ctors
Diffstat (limited to 'src/primitives')
-rw-r--r-- | src/primitives/transaction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h index 46db39f8db..d7a85015ef 100644 --- a/src/primitives/transaction.h +++ b/src/primitives/transaction.h @@ -393,6 +393,8 @@ class GenTxid uint256 m_hash; public: GenTxid(bool is_wtxid, const uint256& hash) : m_is_wtxid(is_wtxid), m_hash(hash) {} + static GenTxid Txid(const uint256& hash) { return GenTxid{false, hash}; } + static GenTxid Wtxid(const uint256& hash) { return GenTxid{true, hash}; } bool IsWtxid() const { return m_is_wtxid; } const uint256& GetHash() const { return m_hash; } friend bool operator==(const GenTxid& a, const GenTxid& b) { return a.m_is_wtxid == b.m_is_wtxid && a.m_hash == b.m_hash; } |