update genesis hash to the latest ghost node version

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch 2025-11-29 12:18:33 +03:00
parent 84b9a37265
commit 5b022f693c
Signed by: str3tch
GPG Key ID: 84F3190747EE79AA
4 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View File

@ -1,6 +1,6 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
version = 4
[[package]]
name = "addr2line"
@ -564,7 +564,7 @@ dependencies = [
[[package]]
name = "ghost-telemetry-core"
version = "0.1.0"
version = "0.1.2"
dependencies = [
"anyhow",
"bimap",

View File

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

View File

@ -68,7 +68,7 @@ pub struct RemoveNodeResult {
/// number of nodes to connect.
static FIRST_PARTY_NETWORKS: Lazy<HashSet<BlockHash>> = Lazy::new(|| {
let genesis_hash_strs = &[
"0xa217f4ee58a944470e9633ca5bd6d28a428ed64cd9b6f3e413565f359f89af90", // Casper v0.8.0
"0x5e1190682f1a6409cdfd691c0b23a6db792864d8994e591e9c19a31d8163989f", // Casper v0.8.4
];
genesis_hash_strs

View File

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