|
|
@ -892,19 +892,17 @@ void CWallet::ResendWalletTransactions() |
|
|
|
{ |
|
|
|
{ |
|
|
|
// Do this infrequently and randomly to avoid giving away
|
|
|
|
// Do this infrequently and randomly to avoid giving away
|
|
|
|
// that these are our transactions.
|
|
|
|
// that these are our transactions.
|
|
|
|
static int64 nNextTime; |
|
|
|
if (GetTime() < nNextResend) |
|
|
|
if (GetTime() < nNextTime) |
|
|
|
|
|
|
|
return; |
|
|
|
return; |
|
|
|
bool fFirst = (nNextTime == 0); |
|
|
|
bool fFirst = (nNextResend == 0); |
|
|
|
nNextTime = GetTime() + GetRand(30 * 60); |
|
|
|
nNextResend = GetTime() + GetRand(30 * 60); |
|
|
|
if (fFirst) |
|
|
|
if (fFirst) |
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
// Only do it if there's been a new block since last time
|
|
|
|
// Only do it if there's been a new block since last time
|
|
|
|
static int64 nLastTime; |
|
|
|
if (nTimeBestReceived < nLastResend) |
|
|
|
if (nTimeBestReceived < nLastTime) |
|
|
|
|
|
|
|
return; |
|
|
|
return; |
|
|
|
nLastTime = GetTime(); |
|
|
|
nLastResend = GetTime(); |
|
|
|
|
|
|
|
|
|
|
|
// Rebroadcast any of our txes that aren't in a block yet
|
|
|
|
// Rebroadcast any of our txes that aren't in a block yet
|
|
|
|
printf("ResendWalletTransactions()\n"); |
|
|
|
printf("ResendWalletTransactions()\n"); |
|
|
|