From 11eca462a45ca9897d01dfe0c81f91c91994e984 Mon Sep 17 00:00:00 2001 From: Uncle Stretch Date: Sat, 19 Sep 2026 17:00:27 +0300 Subject: [PATCH] fix session keys length Signed-off-by: Uncle Stretch --- Cargo.toml | 2 +- src/components/validator/rotate_popup.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dda1c7d..cb2f4a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "ghost-eye" authors = ["str3tch "] description = "Application for interacting with Casper/Ghost nodes that are exposing RPC only to the localhost" -version = "0.4.0" +version = "0.4.1" edition = "2021" homepage = "https://git.ghostchain.io/ghostchain" repository = "https://git.ghostchain.io/ghostchain/ghost-eye" diff --git a/src/components/validator/rotate_popup.rs b/src/components/validator/rotate_popup.rs index 3260488..528c275 100644 --- a/src/components/validator/rotate_popup.rs +++ b/src/components/validator/rotate_popup.rs @@ -48,7 +48,7 @@ impl RotatePopup { } fn rotate_keys(&mut self) { - if !self.cached_keys.is_empty() && self.cached_keys.len() == 258 { + if !self.cached_keys.is_empty() && self.cached_keys.len() == 322 { if let Some(network_tx) = &self.network_tx { let _ = network_tx.send(Action::SetSessionKeys( self.secret_seed,