aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2012-04-02 20:34:17 +0200
committerLuke Dashjr <[email protected]>2012-04-04 16:00:04 -0400
commit53e596512c62f3a874e616e80375f644c05ab42c (patch)
tree83e20935c7056a42ae1e5016d25f9b3928b9b2bf /src
parentAdd laanwj to gitian download scripts. (diff)
downloaddiscoin-53e596512c62f3a874e616e80375f644c05ab42c.tar.xz
discoin-53e596512c62f3a874e616e80375f644c05ab42c.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/qt/bitcoingui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp
index ed891f369..be6083817 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));