diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-06-03 08:54:17 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-06-03 08:54:21 +0200 |
| commit | 522a8fa3777486725f06d6bbf5694b9cd32cbcce (patch) | |
| tree | 201408b655a4995986535690818ef32f2e1a7b6f /src | |
| parent | Merge pull request #3837 (diff) | |
| parent | Properly initialize CWallet::nTimeFirstKey (diff) | |
| download | discoin-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.h | 1 |
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) { |