update genesis hash of the latest ghost/casper network

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch 2026-02-04 17:43:04 +03:00
parent 5b022f693c
commit 6d46692e4c
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.2" version = "0.1.3"
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 = &[
"0x5e1190682f1a6409cdfd691c0b23a6db792864d8994e591e9c19a31d8163989f", // Casper v0.8.4 "0x475e48fab52f3d0587b6b03101d224560c549e984d1dee197b7d8b55830e7da3", // Casper v0.8.5
]; ];
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("0x5e1190682f1a6409cdfd691c0b23a6db792864d8994e591e9c19a31d8163989f") BlockHash::from_str("0x475e48fab52f3d0587b6b03101d224560c549e984d1dee197b7d8b55830e7da3")
.expect("Should be good genesis") .expect("Should be good genesis")
} }