0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

fix Typo: "merkelRoot" -> "merkleRoot"

This commit is contained in:
ianliu 2019-11-12 00:56:05 +08:00
parent a6f6333ba2
commit eb880f092b

View file

@ -345,8 +345,8 @@ BOOST_AUTO_TEST_CASE(merkle_test_BlockWitness)
hashes[0].SetNull(); hashes[0].SetNull();
hashes[1] = block.vtx[1]->GetHash(); hashes[1] = block.vtx[1]->GetHash();
uint256 merkelRootofHashes = ComputeMerkleRoot(hashes); uint256 merkleRootofHashes = ComputeMerkleRoot(hashes);
BOOST_CHECK_EQUAL(merkelRootofHashes, blockWitness); BOOST_CHECK_EQUAL(merkleRootofHashes, blockWitness);
} }
BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE_END()