diff options
| author | MarcoFalke <[email protected]> | 2020-03-11 15:23:12 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-03-11 15:16:54 -0400 |
| commit | bbbbb53dd1111c615ea519e5f275a115616e5a33 (patch) | |
| tree | 077cb735d6c57e648da2a743d586641a4717615c /src/test | |
| parent | Merge #18268: rpc: Remove redundant types from descriptions (diff) | |
| download | discoin-bbbbb53dd1111c615ea519e5f275a115616e5a33.tar.xz discoin-bbbbb53dd1111c615ea519e5f275a115616e5a33.zip | |
fuzz: Add missing ECC_Start to key_io test
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/fuzz/key_io.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/fuzz/key_io.cpp b/src/test/fuzz/key_io.cpp index f44628b0f..62aefb650 100644 --- a/src/test/fuzz/key_io.cpp +++ b/src/test/fuzz/key_io.cpp @@ -16,7 +16,9 @@ void initialize() { - SelectParams(CBaseChainParams::REGTEST); + static const ECCVerifyHandle verify_handle; + ECC_Start(); + SelectParams(CBaseChainParams::MAIN); } void test_one_input(const std::vector<uint8_t>& buffer) |