Skip to content

Commit

Permalink
test: Fix validation_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lateminer committed Feb 16, 2024
1 parent 9c629f2 commit 762fa57
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/kernel/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,21 @@ class CRegTestParams : public CChainParams
}
};

m_assumeutxo_data = {};
m_assumeutxo_data = {
{
.height = 110,
.hash_serialized = AssumeutxoHash{uint256S("0x6657b736d4fe4db0cbc796789e812d5dba7f5c143764b1b6905612f1830609d1")},
.nChainTx = 111,
.blockhash = uint256S("0x696e92821f65549c7ee134edceeeeaaa4105647a3c4fd9f298c0aec0ab50425c")
},
{
// For use by test/functional/feature_assumeutxo.py
.height = 299,
.hash_serialized = AssumeutxoHash{uint256S("0x61d9c2b29a2571a5fe285fe2d8554f91f93309666fc9b8223ee96338de25ff53")},
.nChainTx = 300,
.blockhash = uint256S("0x7e0517ef3ea6ecbed9117858e42eedc8eb39e8698a38dcbd1b3962a283233f4c")
},
};

chainTxData = ChainTxData{
0,
Expand Down

0 comments on commit 762fa57

Please sign in to comment.