| 151 | |
| 152 | template <unsigned int BITS> |
| 153 | void base_uint<BITS>::SetHex(const char* psz) |
| 154 | { |
| 155 | *this = UintToArith256(uint256S(psz)); |
| 156 | } |
| 157 | |
| 158 | template <unsigned int BITS> |
| 159 | void base_uint<BITS>::SetHex(const std::string& str) |
nothing calls this directly
no test coverage detected