mirror of
https://github.com/cygnusxi/CurecoinSource.git
synced 2025-07-27 07:34:41 +02:00
Remove unneeded arguments
The staking indicator tool tip for no mature coins was erroneously given these arguments while debugging the stake weight. In my rush to debug the weight, I did the same (these arguments) in a proper location and forgot to remove the original debugging attempt code (these arguments) after the debugging was complete and when I did remove the correct debugging code. Sorry for my oversight. It was the result of sleeplessness and not carelessness.
This commit is contained in:
parent
742eae5666
commit
7489c5a805
@ -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")); }
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user