increasing history to be useful for geth fast sync

This commit is contained in:
Nikolay Volf 2016-03-11 23:37:47 +04:00
parent 349584772b
commit 19f23f8445
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ pub struct Client<V = CanonVerifier> where V: Verifier {
verifier: PhantomData<V>,
}
const HISTORY: u64 = 1000;
const HISTORY: u64 = 1200;
const CLIENT_DB_VER_STR: &'static str = "5.1";
impl Client<CanonVerifier> {