Increase time ago of last block for "up to date" status from 30 to 90 minutes
[novacoin.git] / src / qt / bitcoingui.cpp
index ed891f3..be60838 100644 (file)
@@ -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));