changed timing

This commit is contained in:
Evan Duffield 2014-08-08 12:41:10 -07:00
parent 1619683a60
commit eba7d94fb1
3 changed files with 5 additions and 5 deletions

View File

@ -7612,7 +7612,7 @@ void ThreadCheckDarkSendPool()
}
//auto denom every 2.5 minutes
if(c % 150 == 0){
if(c % 60 == 0){
darkSendPool.DoAutomaticDenominating();
}
c++;

View File

@ -2563,7 +2563,7 @@ public:
bool IsExpired()
{
return (GetTime() - addedTime) > 60;// 60 seconds
return (GetTime() - addedTime) > 120;// 120 seconds
}
};
@ -2612,7 +2612,7 @@ public:
bool IsExpired()
{
return (GetTime() - time) > 60;// 60 seconds
return (GetTime() - time) > 120;// 120 seconds
}
};

View File

@ -313,7 +313,7 @@ void SendCoinsDialog::darkSendStatus()
}
}
if(!darkSendPool.sessionFoundMasternode) return;
//if(!darkSendPool.sessionFoundMasternode) return;
int state = darkSendPool.GetState();
int entries = darkSendPool.GetEntriesCount();