| 50 | const uint160 MaxS = uint160(std::vector<uint8_t>(MaxArray, MaxArray + 20)); |
| 51 | |
| 52 | static std::string ArrayToString(const uint8_t A[], unsigned int width) { |
| 53 | std::stringstream Stream; |
| 54 | Stream << std::hex; |
| 55 | for (unsigned int i = 0; i < width; ++i) { |
| 56 | Stream << std::setw(2) << std::setfill('0') |
| 57 | << (unsigned int)A[width - i - 1]; |
| 58 | } |
| 59 | return Stream.str(); |
| 60 | } |
| 61 | |
| 62 | // constructors, equality, inequality |
| 63 | BOOST_AUTO_TEST_CASE(basics) { |
no test coverage detected