make it 2h before blockchain is considered outdated

This commit is contained in:
Miguel Freitas 2013-12-17 08:08:16 -02:00
parent ddd5e332a3
commit 378e4622e3

View File

@ -300,7 +300,7 @@ void ThreadWaitExtIP()
bool isBlockChainUptodate() {
if( !pindexBest )
return false;
return (pindexBest->GetBlockTime() > GetTime() - 1 * 60 * 60);
return (pindexBest->GetBlockTime() > GetTime() - 2 * 60 * 60);
}
bool yes(libtorrent::torrent_status const&)