Update fork choice for v0.9.1

This commit is contained in:
Michael Sproul
2019-11-18 12:12:44 +11:00
parent d9467a8ebb
commit 0eb24bb198
8 changed files with 377 additions and 103 deletions

View File

@@ -84,6 +84,11 @@ pub struct ChainSpec {
domain_deposit: u32,
domain_voluntary_exit: u32,
/*
* Fork choice
*/
pub safe_slots_to_update_justified: u64,
pub boot_nodes: Vec<String>,
pub network_id: u8,
}
@@ -184,6 +189,11 @@ impl ChainSpec {
domain_deposit: 3,
domain_voluntary_exit: 4,
/*
* Fork choice
*/
safe_slots_to_update_justified: 8,
/*
* Network specific
*/