diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2013-07-28 17:21:21 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2013-07-28 17:21:21 -0700 |
commit | 4bb77b49632b47465216adcd1009b6c4b3825386 (patch) | |
tree | 7cf0bac9d587583461c506e916198270b7c9f9ff /src/wallet.h | |
parent | 83a3597071def757731544f8f1adf89a9aeee219 (diff) | |
parent | 203d1ae69b1b606c0216d0dc35de567c591720ae (diff) |
Merge pull request #2541 from luke-jr/bugfix_wallet_resend
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 36b3608fb0..92f893c6b0 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; |