mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-18 13:17:55 +02:00
Wallet, RPC, bitcoin-tx, etc updates for confidential transactions
This commit is contained in:
parent
74987d30b1
commit
292f923d03
29 changed files with 968 additions and 175 deletions
|
|
@ -11,6 +11,7 @@
|
|||
|
||||
#include "addrman.h"
|
||||
#include "amount.h"
|
||||
#include "blind.h"
|
||||
#include "checkpoints.h"
|
||||
#include "compat/sanity.h"
|
||||
#include "key.h"
|
||||
|
|
@ -196,6 +197,7 @@ void Shutdown()
|
|||
delete pwalletMain;
|
||||
pwalletMain = NULL;
|
||||
#endif
|
||||
ECC_Blinding_Stop();
|
||||
ECC_Stop();
|
||||
ECC_Verify_Stop();
|
||||
LogPrintf("%s: done\n", __func__);
|
||||
|
|
@ -772,6 +774,7 @@ bool AppInit2(boost::thread_group& threadGroup)
|
|||
// ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log
|
||||
|
||||
// Initialize elliptic curve code
|
||||
ECC_Blinding_Start();
|
||||
ECC_Verify_Start();
|
||||
ECC_Start();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue