From 4946c5412e410aa4c0aeeaffb7a6ea5062e731de Mon Sep 17 00:00:00 2001 From: "James C. Owens" Date: Sun, 10 Dec 2023 11:42:16 -0500 Subject: [PATCH] Change default notification window for new poll from 1 to 8 hours --- src/qt/optionsmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index ce76357a0b..666b60371b 100644 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -57,7 +57,7 @@ void OptionsModel::Init() fLimitTxnDisplay = settings.value("fLimitTxnDisplay", false).toBool(); fMaskValues = settings.value("fMaskValues", false).toBool(); limitTxnDate = settings.value("limitTxnDate", QDate()).toDate(); - pollExpireNotification = settings.value("pollExpireNotification", 1.0).toDouble(); + pollExpireNotification = settings.value("pollExpireNotification", 8.0).toDouble(); nReserveBalance = settings.value("nReserveBalance").toLongLong(); language = settings.value("language", "").toString(); walletStylesheet = settings.value("walletStylesheet", "dark").toString();