We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 466bcfc commit e571a10Copy full SHA for e571a10
src/test/fuzz/descriptor_parse.cpp
@@ -3,13 +3,15 @@
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5
#include <chainparams.h>
6
-#include <key.h>
+#include <pubkey.h>
7
#include <script/descriptor.h>
8
#include <script/standard.h>
9
#include <test/fuzz/fuzz.h>
10
+#include <util/memory.h>
11
12
void initialize()
13
{
14
+ static const auto verify_handle = MakeUnique<ECCVerifyHandle>();
15
SelectParams(CBaseChainParams::REGTEST);
16
}
17
0 commit comments