Fix tests after recent refactors

This commit is contained in:
Pieter Wuille
2012-04-17 20:37:47 +02:00
parent c23617fef3
commit 0a83c0fcef
4 changed files with 6 additions and 5 deletions

View File

@@ -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;