diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-17 20:37:47 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-17 20:37:47 +0200 |
commit | 0a83c0fcef87e34e3e0f05580fa2c1ad9208c367 (patch) | |
tree | c6c88f0b896916c5662d408c85819aa4bbfcca00 /src/test/miner_tests.cpp | |
parent | c23617fef3086e0d11ccfa288afa1c1d177bcdc8 (diff) |
Fix tests after recent refactors
Diffstat (limited to 'src/test/miner_tests.cpp')
-rw-r--r-- | src/test/miner_tests.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/miner_tests.cpp b/src/test/miner_tests.cpp index d4abd6d2a7..5712b4a1b1 100644 --- a/src/test/miner_tests.cpp +++ b/src/test/miner_tests.cpp @@ -1,6 +1,7 @@ #include <boost/test/unit_test.hpp> #include "uint256.h" +#include "util.h" extern void SHA256Transform(void* pstate, void* pinput, const void* pinit); @@ -11,7 +12,7 @@ BOOST_AUTO_TEST_CASE(sha256transform_equality) unsigned int pSHA256InitState[8] = {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19}; - unsigned char pstate[32]; + // unsigned char pstate[32]; unsigned char pinput[64]; int i; |