update genesis hash

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch 2025-08-03 20:14:36 +03:00
parent 40c5256f58
commit 84b9a37265
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.0" version = "0.1.1"
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 = &[
"0x07074eb5f47a6f4dd70430674e5174d5414bc055292b90392fb6f0a28c7524d1", // Casper v0.0.3 "0xa217f4ee58a944470e9633ca5bd6d28a428ed64cd9b6f3e413565f359f89af90", // Casper v0.8.0
]; ];
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("0x07074eb5f47a6f4dd70430674e5174d5414bc055292b90392fb6f0a28c7524d1") BlockHash::from_str("0xa217f4ee58a944470e9633ca5bd6d28a428ed64cd9b6f3e413565f359f89af90")
.expect("Should be good genesis") .expect("Should be good genesis")
} }