From 19f23f8445bb34daf8ea3eebd9fa6fb733d8329a Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Fri, 11 Mar 2016 23:37:47 +0400 Subject: [PATCH] increasing history to be useful for geth fast sync --- ethcore/src/client/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethcore/src/client/client.rs b/ethcore/src/client/client.rs index 8abf3a526..77cf105ed 100644 --- a/ethcore/src/client/client.rs +++ b/ethcore/src/client/client.rs @@ -115,7 +115,7 @@ pub struct Client where V: Verifier { verifier: PhantomData, } -const HISTORY: u64 = 1000; +const HISTORY: u64 = 1200; const CLIENT_DB_VER_STR: &'static str = "5.1"; impl Client {