2020-08-17 05:41:37 -04:00
|
|
|
// 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 <chainparams.h>
|
|
|
|
#include <consensus/validation.h>
|
|
|
|
#include <primitives/block.h>
|
|
|
|
#include <signet.h>
|
|
|
|
#include <streams.h>
|
|
|
|
#include <test/fuzz/FuzzedDataProvider.h>
|
2020-09-22 10:48:26 -03:00
|
|
|
#include <test/fuzz/fuzz.h>
|
2020-08-17 05:41:37 -04:00
|
|
|
#include <test/fuzz/util.h>
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <optional>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
void initialize()
|
|
|
|
{
|
|
|
|
InitializeFuzzingContext(CBaseChainParams::SIGNET);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test_one_input(const std::vector<uint8_t>& buffer)
|
|
|
|
{
|
|
|
|
FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
|
|
|
|
const std::optional<CBlock> block = ConsumeDeserializable<CBlock>(fuzzed_data_provider);
|
|
|
|
if (!block) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
(void)CheckSignetBlockSolution(*block, Params().GetConsensus());
|
2020-09-22 10:48:26 -03:00
|
|
|
(void)SignetTxs::Create(*block, ConsumeScript(fuzzed_data_provider));
|
2020-08-17 05:41:37 -04:00
|
|
|
}
|