update genesis hash of the latest casper runtime

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch 2026-09-12 17:28:29 +03:00
parent c8c98bc3df
commit b0a7607cc1
Signed by: str3tch
GPG Key ID: 84F3190747EE79AA
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ghost-telemetry-core" name = "ghost-telemetry-core"
version = "0.1.3" version = "0.1.4"
authors = ["Uncle Stinky uncle.stinky@ghostchain.io"] authors = ["Uncle Stinky uncle.stinky@ghostchain.io"]
edition = "2021" edition = "2021"

View File

@ -68,7 +68,7 @@ pub struct RemoveNodeResult {
/// number of nodes to connect. /// number of nodes to connect.
static FIRST_PARTY_NETWORKS: Lazy<HashSet<BlockHash>> = Lazy::new(|| { static FIRST_PARTY_NETWORKS: Lazy<HashSet<BlockHash>> = Lazy::new(|| {
let genesis_hash_strs = &[ let genesis_hash_strs = &[
"0x475e48fab52f3d0587b6b03101d224560c549e984d1dee197b7d8b55830e7da3", // Casper v0.8.5 "0xcf9de7b34460e5f97afaeed6d0efa5a3dd65fbe190de8ed28ecfa50e573af7c8", // Casper runtime v4.0.10
]; ];
genesis_hash_strs genesis_hash_strs

View File

@ -278,7 +278,7 @@ mod test {
} }
fn get_valid_genesis() -> BlockHash { fn get_valid_genesis() -> BlockHash {
BlockHash::from_str("0x475e48fab52f3d0587b6b03101d224560c549e984d1dee197b7d8b55830e7da3") BlockHash::from_str("0xcf9de7b34460e5f97afaeed6d0efa5a3dd65fbe190de8ed28ecfa50e573af7c8")
.expect("Should be good genesis") .expect("Should be good genesis")
} }