update default verification edge

This commit is contained in:
Svyatoslav Nikolsky 2019-03-12 13:09:48 +03:00
parent f83f7a53ad
commit 668dc9e620
1 changed files with 5 additions and 1 deletions

View File

@ -81,7 +81,11 @@ impl Network {
}
pub fn default_verification_edge(&self) -> H256 {
self.genesis_block().hash()
match *self {
// block #410100, best checkpoint of zcashd as of 12.03.2019
Network::Mainnet => H256::from_reversed_str("0000000002c565958f783a24a4ac17cde898ff525e75ed9baf66861b0b9fcada"),
_ => self.genesis_block().hash(),
}
}
}