From ba702ec64adc4c83bab721ede79335af59108637 Mon Sep 17 00:00:00 2001 From: ErC Date: Wed, 12 Jun 2024 12:18:35 +0200 Subject: [PATCH] fix spelling of Tor from warning message (#1440) --- src/qt/overviewpage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/overviewpage.cpp b/src/qt/overviewpage.cpp index 26a4c9612e..ea0d1a7b12 100644 --- a/src/qt/overviewpage.cpp +++ b/src/qt/overviewpage.cpp @@ -185,7 +185,7 @@ void OverviewPage::handleEnabledTorChanged(){ if(ui->checkboxEnabledTor->isChecked()){ settings.setValue("fTorSetup", true); - msgBox.setText(tr("Please restart the Firo wallet to route your connection through Tor to protect your IP address.
Syncing your wallet might be slower with TOR.
Note that -torsetup in firo.conf will always override any changes made here.")); + msgBox.setText(tr("Please restart the Firo wallet to route your connection through Tor to protect your IP address.
Syncing your wallet might be slower with Tor.
Note that -torsetup in firo.conf will always override any changes made here.")); }else{ settings.setValue("fTorSetup", false); msgBox.setText(tr("Please restart the Firo wallet to disable routing of your connection through Tor to protect your IP address.
Note that -torsetup in firo.conf will always override any changes made here."));