diff options
| author | Luke Dashjr <[email protected]> | 2013-04-19 21:28:25 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2013-07-17 03:00:59 +0000 |
| commit | 203d1ae69b1b606c0216d0dc35de567c591720ae (patch) | |
| tree | d362ee0e64d37258f1207ca79d946a2574fad70c /src/wallet.h | |
| parent | Merge pull request #2825 from sipa/incompatkey (diff) | |
| download | discoin-203d1ae69b1b606c0216d0dc35de567c591720ae.tar.xz discoin-203d1ae69b1b606c0216d0dc35de567c591720ae.zip | |
Bugfix: Store last/next wallet resend times unique per CWallet object
Diffstat (limited to 'src/wallet.h')
| -rw-r--r-- | src/wallet.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet.h b/src/wallet.h index 36b3608fb..92f893c6b 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -80,6 +80,9 @@ private: // the maximum wallet format version: memory-only variable that specifies to what version this wallet may be upgraded int nWalletMaxVersion; + int64 nNextResend; + int64 nLastResend; + public: mutable CCriticalSection cs_wallet; |