fix session keys length
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
parent
4d9e1cc95c
commit
11eca462a4
@ -2,7 +2,7 @@
|
||||
name = "ghost-eye"
|
||||
authors = ["str3tch <stretch@ghostchain.io>"]
|
||||
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"
|
||||
|
||||
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user