mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 21:42:47 +01:00
changed timing
This commit is contained in:
parent
1619683a60
commit
eba7d94fb1
@ -7612,7 +7612,7 @@ void ThreadCheckDarkSendPool()
|
||||
}
|
||||
|
||||
//auto denom every 2.5 minutes
|
||||
if(c % 150 == 0){
|
||||
if(c % 60 == 0){
|
||||
darkSendPool.DoAutomaticDenominating();
|
||||
}
|
||||
c++;
|
||||
|
@ -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
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -313,8 +313,8 @@ void SendCoinsDialog::darkSendStatus()
|
||||
}
|
||||
}
|
||||
|
||||
if(!darkSendPool.sessionFoundMasternode) return;
|
||||
|
||||
//if(!darkSendPool.sessionFoundMasternode) return;
|
||||
|
||||
int state = darkSendPool.GetState();
|
||||
int entries = darkSendPool.GetEntriesCount();
|
||||
int accepted = darkSendPool.GetLastEntryAccepted();
|
||||
|
Loading…
Reference in New Issue
Block a user