From: Wladimir J. van der Laan Date: Mon, 2 Apr 2012 18:34:17 +0000 (+0200) Subject: Increase time ago of last block for "up to date" status from 30 to 90 minutes X-Git-Tag: v0.4.0-unstable~129^2~1^2~18^2~10^2~7^2~1 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=53e596512c62f3a874e616e80375f644c05ab42c Increase time ago of last block for "up to date" status from 30 to 90 minutes It was too hyperactive. gmaxwell: I mean that right now when the block gap goes over an hour it starts showing synchronizing. Increasing that to 90 minutes or so would make it only happen about 6.4 times per year --- diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index ed891f3..be60838 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -480,7 +480,7 @@ void BitcoinGUI::setNumBlocks(int count) } // Set icon state: spinning if catching up, tick otherwise - if(secs < 30*60) + if(secs < 90*60) { tooltip = tr("Up to date") + QString(".\n") + tooltip; labelBlocksIcon->setPixmap(QIcon(":/icons/synced").pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE));