diff --git a/telemetry-core/Cargo.toml b/telemetry-core/Cargo.toml index 3c31644..07caccd 100644 --- a/telemetry-core/Cargo.toml +++ b/telemetry-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ghost-telemetry-core" -version = "0.1.2" +version = "0.1.3" authors = ["Uncle Stinky uncle.stinky@ghostchain.io"] edition = "2021" diff --git a/telemetry-core/src/state/chain.rs b/telemetry-core/src/state/chain.rs index d0348fd..5a0f6d4 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 = &[ - "0x5e1190682f1a6409cdfd691c0b23a6db792864d8994e591e9c19a31d8163989f", // Casper v0.8.4 + "0x475e48fab52f3d0587b6b03101d224560c549e984d1dee197b7d8b55830e7da3", // Casper v0.8.5 ]; genesis_hash_strs diff --git a/telemetry-core/src/state/state.rs b/telemetry-core/src/state/state.rs index 18e9006..5fa710e 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("0x5e1190682f1a6409cdfd691c0b23a6db792864d8994e591e9c19a31d8163989f") + BlockHash::from_str("0x475e48fab52f3d0587b6b03101d224560c549e984d1dee197b7d8b55830e7da3") .expect("Should be good genesis") }