From 676f75e2c8f675a7a8e7a5f8ea9fa8afc133f7c3 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Mon, 17 Feb 2020 05:44:00 -0500 Subject: [PATCH] Remove incorrect comment --- src/rpc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc.cpp b/src/rpc.cpp index 014ce0e..aafcf7c 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -33,7 +33,7 @@ RPC::RPC(MainWindow* main) { QObject::connect(priceTimer, &QTimer::timeout, [=]() { refreshPrice(); }); - priceTimer->start(Settings::priceRefreshSpeed); // Every hour + priceTimer->start(Settings::priceRefreshSpeed); // Set up a timer to refresh the UI every few seconds timer = new QTimer(main);