mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
test: Mock IBD in net_processing fuzzers
This commit is contained in:
parent
c51c2753a4
commit
fa4234d877
6 changed files with 56 additions and 4 deletions
22
src/test/util/validation.cpp
Normal file
22
src/test/util/validation.cpp
Normal 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());
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue