mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-14 06:32:33 +01:00
Fix miner_test unit test bug
This commit is contained in:
@@ -12,13 +12,13 @@ BOOST_AUTO_TEST_CASE(sha256transform_equality)
|
|||||||
|
|
||||||
|
|
||||||
unsigned char pstate[32];
|
unsigned char pstate[32];
|
||||||
unsigned char pinput[32];
|
unsigned char pinput[64];
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < 32; i++) {
|
for (i = 0; i < 32; i++) {
|
||||||
pinput[i] = i;
|
pinput[i] = i;
|
||||||
pstate[i] = 0;
|
pinput[i+32] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint256 hash;
|
uint256 hash;
|
||||||
|
|||||||
Reference in New Issue
Block a user