From 0048ed3d7e05b95a70de4bf87baf9041f446924c Mon Sep 17 00:00:00 2001 From: Duke Date: Sun, 11 Dec 2022 09:22:52 -0500 Subject: [PATCH] Change rescan info poll to 10s --- src/rpc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc.cpp b/src/rpc.cpp index 9a9e822..af062aa 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -56,7 +56,7 @@ RPC::RPC(MainWindow* main) { refreshRescan(); }); - rescanTimer->start(1000); + rescanTimer->start(10000); qDebug() << __func__ << ": started rescanTimer"; qDebug() << __func__ << ": Setting up a timer to refresh the UI every few seconds";