Make sure new wallet variables are initialized
This commit is contained in:
parent
4bb77b4963
commit
c4316fefa5
1 changed files with 4 additions and 0 deletions
|
@ -104,6 +104,8 @@ public:
|
|||
nMasterKeyMaxID = 0;
|
||||
pwalletdbEncryption = NULL;
|
||||
nOrderPosNext = 0;
|
||||
nNextResend = 0;
|
||||
nLastResend = 0;
|
||||
}
|
||||
CWallet(std::string strWalletFileIn)
|
||||
{
|
||||
|
@ -114,6 +116,8 @@ public:
|
|||
nMasterKeyMaxID = 0;
|
||||
pwalletdbEncryption = NULL;
|
||||
nOrderPosNext = 0;
|
||||
nNextResend = 0;
|
||||
nLastResend = 0;
|
||||
}
|
||||
|
||||
std::map<uint256, CWalletTx> mapWallet;
|
||||
|
|
Loading…
Reference in a new issue