mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
Add unit test for ComputeTapleafHash
This commit is contained in:
parent
392dc68e37
commit
f34ada89fd
1 changed files with 10 additions and 0 deletions
|
|
@ -1827,4 +1827,14 @@ BOOST_AUTO_TEST_CASE(compute_tapbranch)
|
|||
BOOST_CHECK_EQUAL(ComputeTapbranchHash(hash1, hash2), result);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(compute_tapleaf)
|
||||
{
|
||||
const uint8_t script[6] = {'f','o','o','b','a','r'};
|
||||
uint256 tlc0 = uint256S("edbc10c272a1215dcdcc11d605b9027b5ad6ed97cd45521203f136767b5b9c06");
|
||||
uint256 tlc2 = uint256S("8b5c4f90ae6bf76e259dbef5d8a59df06359c391b59263741b25eca76451b27a");
|
||||
|
||||
BOOST_CHECK_EQUAL(ComputeTapleafHash(0xc0, Span(script)), tlc0);
|
||||
BOOST_CHECK_EQUAL(ComputeTapleafHash(0xc2, Span(script)), tlc2);
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_SUITE_END()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue