mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-17 17:57:39 +00:00
Status: fix negative blocks remaining
This commit is contained in:
parent
bd4400a7f2
commit
c964cd5349
1 changed files with 5 additions and 4 deletions
|
@ -637,7 +637,7 @@ void MainWindow::onWalletOpened() {
|
||||||
this->touchbarShowWallet();
|
this->touchbarShowWallet();
|
||||||
this->updatePasswordIcon();
|
this->updatePasswordIcon();
|
||||||
|
|
||||||
m_updateBytes.start(1000);
|
m_updateBytes.start(100);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::onBalanceUpdated(double balance, double unlocked, const QString &balance_str, const QString &unlocked_str) {
|
void MainWindow::onBalanceUpdated(double balance, double unlocked, const QString &balance_str, const QString &unlocked_str) {
|
||||||
|
@ -663,14 +663,15 @@ void MainWindow::onSynchronized() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::onBlockchainSync(int height, int target) {
|
void MainWindow::onBlockchainSync(int height, int target) {
|
||||||
QString heightText = QString("Blockchain sync: %1 blocks remaining").arg(target - height);
|
QString blocks = (target >= height) ? QString::number(target - height) : "?";
|
||||||
|
QString heightText = QString("Blockchain sync: %1 blocks remaining").arg(blocks);
|
||||||
m_statusLabelStatus->setText(heightText);
|
m_statusLabelStatus->setText(heightText);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::onRefreshSync(int height, int target) {
|
void MainWindow::onRefreshSync(int height, int target) {
|
||||||
QString heightText = QString("Wallet refresh: %1 blocks remaining").arg(target - height);
|
QString blocks = (target >= height) ? QString::number(target - height) : "?";
|
||||||
|
QString heightText = QString("Wallet refresh: %1 blocks remaining").arg(blocks);
|
||||||
m_statusLabelStatus->setText(heightText);
|
m_statusLabelStatus->setText(heightText);
|
||||||
this->updateNetStats();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::onConnectionStatusChanged(int status)
|
void MainWindow::onConnectionStatusChanged(int status)
|
||||||
|
|
Loading…
Reference in a new issue