From 3a6f632b9bc94b626be88964d3934b898fa6bb25 Mon Sep 17 00:00:00 2001 From: Duke Date: Wed, 24 Jan 2024 14:07:15 -0500 Subject: [PATCH] Try to prevent #155 --- src/mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index f9e8afb..1af8cc4 100755 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1320,7 +1320,8 @@ void MainWindow::importPrivKey() { if (rescan) { //TODO: verify rescanfrom is a valid integer rpc->rescan(pui.rescanfrom->text().trimmed().toInt() , [=] (QJsonValue response){ - qDebug() << __func__ << ":rescanning from height " << pui.rescanfrom->text().toInt() << " finished" << response; + //DEBUG("rescanning from height " << pui.rescanfrom->text().toInt() << " finished" << response); + DEBUG("rescanning finished" << response); ui->statusBar->showMessage(tr("Rescanning finished"), 5000); }); }