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.cpp | |
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.cpp')
-rw-r--r-- | src/uint256.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/uint256.cpp b/src/uint256.cpp index d074df2f20..f358b62903 100644 --- a/src/uint256.cpp +++ b/src/uint256.cpp @@ -80,4 +80,5 @@ template std::string base_blob<256>::ToString() const; template void base_blob<256>::SetHex(const char*); template void base_blob<256>::SetHex(const std::string&); +const uint256 uint256::ZERO(0); const uint256 uint256::ONE(1); |