]> Git Repo - VerusCoin.git/blobdiff - src/bitcoin-tx.cpp
Auto merge of #2704 - bitcartel:fix_qa_shieldcoinbase_hang, r=str4d
[VerusCoin.git] / src / bitcoin-tx.cpp
index 0ba7e9a43eb2bc12dd6ce4f4985355870b692459..c6c7c93edb9c65584a3b7b8dfca7bed8044d272b 100644 (file)
@@ -445,9 +445,15 @@ static void MutateTxSign(CMutableTransaction& tx, const string& flagStr)
 
 class Secp256k1Init
 {
+    ECCVerifyHandle globalVerifyHandle;
+
 public:
-    Secp256k1Init() { ECC_Start(); }
-    ~Secp256k1Init() { ECC_Stop(); }
+    Secp256k1Init() {
+        ECC_Start();
+    }
+    ~Secp256k1Init() {
+        ECC_Stop();
+    }
 };
 
 static void MutateTx(CMutableTransaction& tx, const string& command,
This page took 0.022578 seconds and 4 git commands to generate.