Merge pull request #1026 from laanwj/2012_04_increase_up_to_date_time

Increase time ago of last block for "up to date" status from 30 to 90 minutes
This commit is contained in:
Gregory Maxwell 2012-04-02 20:35:44 -07:00
commit 3263a245bb

View file

@ -515,7 +515,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));