Bugfix: Store last/next wallet resend times unique per CWallet object

This commit is contained in:
Luke Dashjr
2013-04-19 21:28:25 +00:00
parent c2aca50551
commit 203d1ae69b
2 changed files with 8 additions and 7 deletions

View File

@@ -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;