aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2014-06-03 08:54:17 +0200
committerWladimir J. van der Laan <[email protected]>2014-06-03 08:54:21 +0200
commit522a8fa3777486725f06d6bbf5694b9cd32cbcce (patch)
tree201408b655a4995986535690818ef32f2e1a7b6f /src
parentMerge pull request #3837 (diff)
parentProperly initialize CWallet::nTimeFirstKey (diff)
downloaddiscoin-522a8fa3777486725f06d6bbf5694b9cd32cbcce.tar.xz
discoin-522a8fa3777486725f06d6bbf5694b9cd32cbcce.zip
Merge pull request #4273
91855f2 Properly initialize CWallet::nTimeFirstKey (tm314159)
Diffstat (limited to 'src')
-rw-r--r--src/wallet.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet.h b/src/wallet.h
index 96074151a..d9d071c2b 100644
--- a/src/wallet.h
+++ b/src/wallet.h
@@ -151,6 +151,7 @@ public:
nOrderPosNext = 0;
nNextResend = 0;
nLastResend = 0;
+ nTimeFirstKey = 0;
}
CWallet(std::string strWalletFileIn)
{