some small fixes for the versioning

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch 2024-12-06 18:17:46 +03:00
parent 13a76f25a6
commit bbd96b4ea1
Signed by: str3tch
GPG Key ID: 84F3190747EE79AA
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,8 @@
[package] [package]
name = "ghost-eye" name = "ghost-eye"
version = "0.2.5" authors = ["str3tch <stretch@ghostchain.io>"]
description = "Application for interacting with Casper/Ghost nodes that are exposing RPC only to the localhost"
version = "0.2.6"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@ -39,6 +39,7 @@ struct AccountInfo {
address: String, address: String,
account_id: [u8; 32], account_id: [u8; 32],
seed: String, seed: String,
#[allow(dead_code)]
pair_signer: PairSigner<CasperConfig, Pair>, pair_signer: PairSigner<CasperConfig, Pair>,
} }