diff options
author | Pieter Wuille <pieter@wuille.net> | 2020-09-20 21:17:29 -0700 |
---|---|---|
committer | Pieter Wuille <pieter@wuille.net> | 2020-10-12 11:01:16 -0700 |
commit | da3b8fde03f2e8060bb7ff3bff17175dab85f0cd (patch) | |
tree | 288a1e596a2e026b06a117d2a62db6c314df65e4 /src/uint256.h | |
parent | 0b2abaa666d6f3331e3246ffd64dd47946e9dcdf (diff) |
Add txrequest module
This adds a new module (unused for now) which defines TxRequestTracker, a data
structure that maintains all information about transaction requests, and coordinates
requests.
Diffstat (limited to 'src/uint256.h')
-rw-r--r-- | src/uint256.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/uint256.h b/src/uint256.h index c55cb31456..ceae70707e 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -126,6 +126,7 @@ public: constexpr uint256() {} constexpr explicit uint256(uint8_t v) : base_blob<256>(v) {} explicit uint256(const std::vector<unsigned char>& vch) : base_blob<256>(vch) {} + static const uint256 ZERO; static const uint256 ONE; }; |