aboutsummaryrefslogtreecommitdiff
path: root/src/test/util/validation.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-11-06 15:03:51 +0100
committerMarcoFalke <falke.marco@gmail.com>2020-11-07 07:50:59 +0100
commitfa4234d877ea3193bfd0e18ff68dcb8fb84b47b5 (patch)
treecf51fc278cdb89124594f03a2557e116670fdf47 /src/test/util/validation.h
parentc51c2753a4ff34413f7369e9cf0282f64a5e38de (diff)
downloadbitcoin-fa4234d877ea3193bfd0e18ff68dcb8fb84b47b5.tar.xz
test: Mock IBD in net_processing fuzzers
Diffstat (limited to 'src/test/util/validation.h')
-rw-r--r--src/test/util/validation.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/util/validation.h b/src/test/util/validation.h
new file mode 100644
index 0000000000..b13aa0be60
--- /dev/null
+++ b/src/test/util/validation.h
@@ -0,0 +1,17 @@
+// 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.
+
+#ifndef BITCOIN_TEST_UTIL_VALIDATION_H
+#define BITCOIN_TEST_UTIL_VALIDATION_H
+
+#include <validation.h>
+
+struct TestChainState : public CChainState {
+ /** Reset the ibd cache to its initial state */
+ void ResetIbd();
+ /** Toggle IsInitialBlockDownload from true to false */
+ void JumpOutOfIbd();
+};
+
+#endif // BITCOIN_TEST_UTIL_VALIDATION_H