Merge pull request #22 from CryptoCanary/patch-2

Remove unneeded arguments
This commit is contained in:
cygnusxi 2017-10-17 16:12:57 -04:00 committed by GitHub
commit 442977b065

View File

@ -645,7 +645,7 @@ if (nLastCoinStakeSearchInterval && nWeight)
else if (IsInitialBlockDownload())
labelStakingIcon->setToolTip(tr("Not staking because wallet is syncing"));
else if (!nWeight)
labelStakingIcon->setToolTip(tr("Not staking because you don't have mature coins 1:%1 2: %2").arg(nLastCoinStakeSearchInterval).arg(nWeight));
labelStakingIcon->setToolTip(tr("Not staking because you don't have mature coins"));
else
labelStakingIcon->setToolTip(tr("Not staking")); }
}