From 378e4622e3c667ca38f40db9774dd96147806a02 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Tue, 17 Dec 2013 08:08:16 -0200 Subject: [PATCH] make it 2h before blockchain is considered outdated --- src/twister.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twister.cpp b/src/twister.cpp index fef23631..ecf45cad 100644 --- a/src/twister.cpp +++ b/src/twister.cpp @@ -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&)