mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-06 10:18:44 -05:00
![fanquake](/assets/img/avatar_default.png)
-BEGIN VERIFY SCRIPT- git rm src/util/memory.h sed -i -e 's/MakeUnique/std::make_unique/g' $(git grep -l MakeUnique src) sed -i -e '/#include <util\/memory.h>/d' $(git grep -l '#include <util/memory.h>' src) sed -i -e '/util\/memory.h \\/d' src/Makefile.am -END VERIFY SCRIPT-
30 lines
933 B
C++
30 lines
933 B
C++
// Copyright (c) 2009-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 <pubkey.h>
|
|
#include <script/descriptor.h>
|
|
#include <test/fuzz/fuzz.h>
|
|
|
|
void initialize_descriptor_parse()
|
|
{
|
|
static const ECCVerifyHandle verify_handle;
|
|
ECC_Start();
|
|
SelectParams(CBaseChainParams::MAIN);
|
|
}
|
|
|
|
FUZZ_TARGET_INIT(descriptor_parse, initialize_descriptor_parse)
|
|
{
|
|
const std::string descriptor(buffer.begin(), buffer.end());
|
|
FlatSigningProvider signing_provider;
|
|
std::string error;
|
|
for (const bool require_checksum : {true, false}) {
|
|
const auto desc = Parse(descriptor, signing_provider, error, require_checksum);
|
|
if (desc) {
|
|
(void)desc->ToString();
|
|
(void)desc->IsRange();
|
|
(void)desc->IsSolvable();
|
|
}
|
|
}
|
|
}
|