diff options
| author | Gregory Maxwell <[email protected]> | 2012-04-02 20:35:44 -0700 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2012-04-02 20:35:44 -0700 |
| commit | 3263a245bbfd9f62d200e326408ddd9099e34672 (patch) | |
| tree | 75300346ec945e00cb7a1d99b4e40eb0bbec6383 /src | |
| parent | Merge pull request #951 from TheBlueMatt/headerslimit (diff) | |
| parent | Increase time ago of last block for "up to date" status from 30 to 90 minutes (diff) | |
| download | discoin-3263a245bbfd9f62d200e326408ddd9099e34672.tar.xz discoin-3263a245bbfd9f62d200e326408ddd9099e34672.zip | |
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
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 91696310b..cf4e43c5d 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -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)); |