diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2017-01-16 11:10:12 +0100 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2017-03-24 10:28:39 +0100 |
commit | d0a627a53aa8cc5cd190f54c95b888dff88a4d37 (patch) | |
tree | 7cf29b3bec17ea60859875eb6b76c9a5fb8612ce /src/wallet/wallet.cpp | |
parent | 9af8f00a7530934d4c9c64eb6c2676ac80b24ace (diff) |
Fix issue where CDataStream->nVersion was taken a CKeyPool record version
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r-- | src/wallet/wallet.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 9c51723664..488e6690cf 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3933,6 +3933,7 @@ bool CWallet::BackupWallet(const std::string& strDest) CKeyPool::CKeyPool() { nTime = GetTime(); + fInternal = false; } CKeyPool::CKeyPool(const CPubKey& vchPubKeyIn, bool internalIn) |