diff options
| author | practicalswift <[email protected]> | 2019-12-06 18:25:51 +0000 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2019-12-06 18:25:51 +0000 |
| commit | 6338c0203416a5f86e9422b6cd479da8af277f2f (patch) | |
| tree | 45e685bfbd4192d788fd6fecd67263b45604194b /src | |
| parent | Merge #17051: tests: Add deserialization fuzzing harnesses (diff) | |
| download | discoin-6338c0203416a5f86e9422b6cd479da8af277f2f.tar.xz discoin-6338c0203416a5f86e9422b6cd479da8af277f2f.zip | |
tests: Fix fuzzing harness for descriptor parsing (descriptor_parse)
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/fuzz/descriptor_parse.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/fuzz/descriptor_parse.cpp b/src/test/fuzz/descriptor_parse.cpp index c4c25854f..47d5038c2 100644 --- a/src/test/fuzz/descriptor_parse.cpp +++ b/src/test/fuzz/descriptor_parse.cpp @@ -3,11 +3,14 @@ // 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> +#include <util/memory.h> void initialize() { + static const auto verify_handle = MakeUnique<ECCVerifyHandle>(); SelectParams(CBaseChainParams::REGTEST); } |