fuzz: Fix misplaced SeedRand::ZEROS

After commit fae63bf130 this must be
placed even before test_setup.
This commit is contained in:
MarcoFalke
2024-12-18 09:13:35 +01:00
parent 477b357460
commit fadd568931
2 changed files with 4 additions and 4 deletions

View File

@@ -21,6 +21,7 @@ using node::BlockAssembler;
FUZZ_TARGET(utxo_total_supply)
{
SeedRandomStateForTest(SeedRand::ZEROS);
/** The testing setup that creates a chainman only (no chainstate) */
ChainTestingSetup test_setup{
ChainType::REGTEST,
@@ -28,7 +29,6 @@ FUZZ_TARGET(utxo_total_supply)
.extra_args = {"-testactivationheight=bip34@2"},
},
};
SeedRandomStateForTest(SeedRand::ZEROS); // Can not be done before test_setup
// Create chainstate
test_setup.LoadVerifyActivateChainstate();
auto& node{test_setup.m_node};