diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-12-16 15:44:57 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-01-05 15:45:36 +0100 |
commit | edc720479d0749a000d5a6970da6d2d72657cf38 (patch) | |
tree | 7651a205bbb676828ec16eb11050aeb9a4cd7a44 /src/arith_uint256.h | |
parent | dba2e9141a4f07154829bdaed35adaf7af7908d3 (diff) |
Remove arith_uint160
We never do 160-bit arithmetic.
Diffstat (limited to 'src/arith_uint256.h')
-rw-r--r-- | src/arith_uint256.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/arith_uint256.h b/src/arith_uint256.h index 5cb04f3c3c..b69eef6769 100644 --- a/src/arith_uint256.h +++ b/src/arith_uint256.h @@ -304,16 +304,6 @@ public: } }; -/** 160-bit unsigned big integer. */ -class arith_uint160 : public base_uint<160> { -public: - arith_uint160() {} - arith_uint160(const base_uint<160>& b) : base_uint<160>(b) {} - arith_uint160(uint64_t b) : base_uint<160>(b) {} - explicit arith_uint160(const std::string& str) : base_uint<160>(str) {} - explicit arith_uint160(const std::vector<unsigned char>& vch) : base_uint<160>(vch) {} -}; - /** 256-bit unsigned big integer. */ class arith_uint256 : public base_uint<256> { public: |