aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortm314159 <tm314159@users.noreply.github.com>2014-06-02 11:32:33 -0700
committerWladimir J. van der Laan <laanwj@gmail.com>2014-06-03 08:54:45 +0200
commiteac2cdcab2f9d5cda2cebb38fe434ef2ae35f0a5 (patch)
tree97117b5692eebf0f91cab17fc751f2912985f90a
parentacb53560874f54a661a71532f5c446d33dd07c7f (diff)
downloadbitcoin-eac2cdcab2f9d5cda2cebb38fe434ef2ae35f0a5.tar.xz
Properly initialize CWallet::nTimeFirstKey
Rebased-From: 91855f2 Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com>
-rw-r--r--src/wallet.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet.h b/src/wallet.h
index b2c06d3f61..5a9b7ad8fd 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)
{