Bitcoin Core 28.99.0
P2P Digital Currency
|
#include <chainparams.h>
#include <key_io.h>
#include <pubkey.h>
#include <script/descriptor.h>
#include <test/fuzz/fuzz.h>
#include <test/fuzz/util/descriptor.h>
#include <util/chaintype.h>
#include <util/strencodings.h>
Go to the source code of this file.
Functions | |
static void | TestDescriptor (const Descriptor &desc, FlatSigningProvider &sig_provider, std::string &dummy, std::optional< bool > &is_ranged, std::optional< bool > &is_solvable) |
Test a successfully parsed descriptor. More... | |
void | initialize_descriptor_parse () |
void | initialize_mocked_descriptor_parse () |
FUZZ_TARGET (mocked_descriptor_parse,.init=initialize_mocked_descriptor_parse) | |
FUZZ_TARGET (descriptor_parse,.init=initialize_descriptor_parse) | |
Variables | |
MockedDescriptorConverter | MOCKED_DESC_CONVERTER |
The converter of mocked descriptors, needs to be initialized when the target is. More... | |
FUZZ_TARGET | ( | descriptor_parse | , |
. | init = initialize_descriptor_parse |
||
) |
FUZZ_TARGET | ( | mocked_descriptor_parse | , |
. | init = initialize_mocked_descriptor_parse |
||
) |
void initialize_descriptor_parse | ( | ) |
Definition at line 66 of file descriptor_parse.cpp.
void initialize_mocked_descriptor_parse | ( | ) |
|
static |
Test a successfully parsed descriptor.
Definition at line 18 of file descriptor_parse.cpp.
MockedDescriptorConverter MOCKED_DESC_CONVERTER |
The converter of mocked descriptors, needs to be initialized when the target is.
Definition at line 15 of file descriptor_parse.cpp.