mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-19 13:27:35 +02:00
Switch to libsecp256k1 validation
This commit is contained in:
parent
5c8529304a
commit
20339a9b92
8 changed files with 38 additions and 297 deletions
|
|
@ -17,6 +17,7 @@
|
|||
#include "main.h"
|
||||
#include "miner.h"
|
||||
#include "net.h"
|
||||
#include "pubkey.h"
|
||||
#include "rpcserver.h"
|
||||
#include "script/standard.h"
|
||||
#include "txdb.h"
|
||||
|
|
@ -196,6 +197,7 @@ void Shutdown()
|
|||
pwalletMain = NULL;
|
||||
#endif
|
||||
ECC_Stop();
|
||||
ECC_Verify_Stop();
|
||||
LogPrintf("%s: done\n", __func__);
|
||||
}
|
||||
|
||||
|
|
@ -770,6 +772,7 @@ bool AppInit2(boost::thread_group& threadGroup)
|
|||
// ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log
|
||||
|
||||
// Initialize elliptic curve code
|
||||
ECC_Verify_Start();
|
||||
ECC_Start();
|
||||
|
||||
// Sanity check
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue