diff options
author | tm314159 <tm314159@users.noreply.github.com> | 2014-06-02 11:32:33 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-06-03 08:54:45 +0200 |
commit | eac2cdcab2f9d5cda2cebb38fe434ef2ae35f0a5 (patch) | |
tree | 97117b5692eebf0f91cab17fc751f2912985f90a | |
parent | acb53560874f54a661a71532f5c446d33dd07c7f (diff) |
Properly initialize CWallet::nTimeFirstKey
Rebased-From: 91855f2
Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com>
-rw-r--r-- | src/wallet.h | 1 |
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) { |