mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-20 23:29:12 +01:00
This is required in the process_message(s) fuzz targets to avoid leaking the next write time from one run to the next. Also, disable it completely because it is not needed and due to leveldb-internal non-determinism.
32 lines
899 B
C++
32 lines
899 B
C++
// Copyright (c) 2020-2022 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>
|
|
|
|
class CValidationInterface;
|
|
|
|
struct TestChainstateManager : public ChainstateManager {
|
|
/** Disable the next write of all chainstates */
|
|
void DisableNextWrite();
|
|
/** Reset the ibd cache to its initial state */
|
|
void ResetIbd();
|
|
/** Toggle IsInitialBlockDownload from true to false */
|
|
void JumpOutOfIbd();
|
|
};
|
|
|
|
class ValidationInterfaceTest
|
|
{
|
|
public:
|
|
static void BlockConnected(
|
|
ChainstateRole role,
|
|
CValidationInterface& obj,
|
|
const std::shared_ptr<const CBlock>& block,
|
|
const CBlockIndex* pindex);
|
|
};
|
|
|
|
#endif // BITCOIN_TEST_UTIL_VALIDATION_H
|