diff options
| author | tm314159 <[email protected]> | 2014-06-02 11:32:33 -0700 |
|---|---|---|
| committer | tm314159 <[email protected]> | 2014-06-02 11:32:33 -0700 |
| commit | 91855f279d27c3772b70c6e491684ed74684685e (patch) | |
| tree | 201408b655a4995986535690818ef32f2e1a7b6f /src | |
| parent | Merge pull request #3837 (diff) | |
| download | discoin-91855f279d27c3772b70c6e491684ed74684685e.tar.xz discoin-91855f279d27c3772b70c6e491684ed74684685e.zip | |
Properly initialize CWallet::nTimeFirstKey
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) { |