test: Mock IBD in net_processing fuzzers

This commit is contained in:
MarcoFalke
2020-11-06 15:03:51 +01:00
parent c51c2753a4
commit fa4234d877
6 changed files with 56 additions and 4 deletions

View File

@@ -0,0 +1,22 @@
// Copyright (c) 2020 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <test/util/validation.h>
#include <util/check.h>
#include <util/time.h>
#include <validation.h>
void TestChainState::ResetIbd()
{
m_cached_finished_ibd = false;
assert(IsInitialBlockDownload());
}
void TestChainState::JumpOutOfIbd()
{
Assert(IsInitialBlockDownload());
m_cached_finished_ibd = true;
Assert(!IsInitialBlockDownload());
}