diff --git a/telemetry-core/src/state/chain.rs b/telemetry-core/src/state/chain.rs index 337c6a9..a7f62e9 100644 --- a/telemetry-core/src/state/chain.rs +++ b/telemetry-core/src/state/chain.rs @@ -68,7 +68,7 @@ pub struct RemoveNodeResult { /// number of nodes to connect. static FIRST_PARTY_NETWORKS: Lazy> = Lazy::new(|| { let genesis_hash_strs = &[ - "0xcb183819bddab6f7fbe26adb816764297a272fdf4bcc264fa9bc89b161647138", // Casper v0.0.3 + "0x07074eb5f47a6f4dd70430674e5174d5414bc055292b90392fb6f0a28c7524d1", // Casper v0.0.3 ]; genesis_hash_strs diff --git a/telemetry-core/src/state/state.rs b/telemetry-core/src/state/state.rs index 862d9fa..9dfd87c 100644 --- a/telemetry-core/src/state/state.rs +++ b/telemetry-core/src/state/state.rs @@ -278,7 +278,7 @@ mod test { } fn get_valid_genesis() -> BlockHash { - BlockHash::from_str("0xcb183819bddab6f7fbe26adb816764297a272fdf4bcc264fa9bc89b161647138") + BlockHash::from_str("0x07074eb5f47a6f4dd70430674e5174d5414bc055292b90392fb6f0a28c7524d1") .expect("Should be good genesis") }