diff options
author | Samer Afach <info@afach.de> | 2022-01-15 16:54:05 +0100 |
---|---|---|
committer | Samer Afach <info@afach.de> | 2022-04-05 17:26:31 +0200 |
commit | a4f4f89815c5aadff51a7a11e0d63caf5212345a (patch) | |
tree | 5f3861280be9a6f3596da0304da7dd299f4f6cb7 /src/arith_uint256.h | |
parent | 807169e10b4a18324356ed6ee4d69587b96a7c70 (diff) |
Replace uint256 specific implementations of base_uint::GetHex() and base_uint::SetHex() with proper ones that don't depend on uint256 and replace template methods instantiations of base_uint with template class instantiation
Diffstat (limited to 'src/arith_uint256.h')
-rw-r--r-- | src/arith_uint256.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arith_uint256.h b/src/arith_uint256.h index a0a0429c2a..19193972a4 100644 --- a/src/arith_uint256.h +++ b/src/arith_uint256.h @@ -284,4 +284,6 @@ public: uint256 ArithToUint256(const arith_uint256 &); arith_uint256 UintToArith256(const uint256 &); +extern template class base_uint<256>; + #endif // BITCOIN_ARITH_UINT256_H |