mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
Fix qt tests
This commit is contained in:
parent
8fedc083fc
commit
3d5c35cd77
@ -492,7 +492,12 @@ void OverviewPage::privateSendStatus(bool fForce)
|
|||||||
static int64_t nLastDSProgressBlockTime = 0;
|
static int64_t nLastDSProgressBlockTime = 0;
|
||||||
int nBestHeight = clientModel->getNumBlocks();
|
int nBestHeight = clientModel->getNumBlocks();
|
||||||
|
|
||||||
CPrivateSendClientManager* privateSendClientManager = privateSendClientManagers.find(walletModel->getWallet()->GetName())->second;
|
auto it = privateSendClientManagers.find(walletModel->getWallet()->GetName());
|
||||||
|
if (it == privateSendClientManagers.end()) {
|
||||||
|
// nothing to do
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
CPrivateSendClientManager* privateSendClientManager = it->second;
|
||||||
|
|
||||||
// We are processing more than 1 block per second, we'll just leave
|
// We are processing more than 1 block per second, we'll just leave
|
||||||
if(nBestHeight > privateSendClientManager->nCachedNumBlocks && GetTime() - nLastDSProgressBlockTime <= 1) return;
|
if(nBestHeight > privateSendClientManager->nCachedNumBlocks && GetTime() - nLastDSProgressBlockTime <= 1) return;
|
||||||
@ -605,7 +610,12 @@ void OverviewPage::togglePrivateSend(){
|
|||||||
settings.setValue("hasMixed", "hasMixed");
|
settings.setValue("hasMixed", "hasMixed");
|
||||||
}
|
}
|
||||||
|
|
||||||
CPrivateSendClientManager* privateSendClientManager = privateSendClientManagers.find(walletModel->getWallet()->GetName())->second;
|
auto it = privateSendClientManagers.find(walletModel->getWallet()->GetName());
|
||||||
|
if (it == privateSendClientManagers.end()) {
|
||||||
|
// nothing to do
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
CPrivateSendClientManager* privateSendClientManager = it->second;
|
||||||
|
|
||||||
if (!privateSendClientManager->IsMixing()) {
|
if (!privateSendClientManager->IsMixing()) {
|
||||||
const CAmount nMinAmount = CPrivateSend::GetSmallestDenomination() + CPrivateSend::GetMaxCollateralAmount();
|
const CAmount nMinAmount = CPrivateSend::GetSmallestDenomination() + CPrivateSend::GetMaxCollateralAmount();
|
||||||
@ -671,5 +681,10 @@ void OverviewPage::DisablePrivateSendCompletely() {
|
|||||||
if (nWalletBackups <= 0) {
|
if (nWalletBackups <= 0) {
|
||||||
ui->labelPrivateSendEnabled->setText("<span style='" + GUIUtil::getThemedStyleQString(GUIUtil::ThemedStyle::TS_ERROR) + "'>(" + tr("Disabled") + ")</span>");
|
ui->labelPrivateSendEnabled->setText("<span style='" + GUIUtil::getThemedStyleQString(GUIUtil::ThemedStyle::TS_ERROR) + "'>(" + tr("Disabled") + ")</span>");
|
||||||
}
|
}
|
||||||
privateSendClientManagers.at(walletModel->getWallet()->GetName())->StopMixing();
|
auto it = privateSendClientManagers.find(walletModel->getWallet()->GetName());
|
||||||
|
if (it == privateSendClientManagers.end()) {
|
||||||
|
// nothing to do
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
it->second->StopMixing();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user