From bbd96b4ea14b478f0fc665cd4177d9fc841952e8 Mon Sep 17 00:00:00 2001 From: Uncle Stretch Date: Fri, 6 Dec 2024 18:17:46 +0300 Subject: [PATCH] some small fixes for the versioning Signed-off-by: Uncle Stretch --- Cargo.toml | 4 +++- src/components/wallet/accounts.rs | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2e3869f..68f8ee7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,8 @@ [package] name = "ghost-eye" -version = "0.2.5" +authors = ["str3tch "] +description = "Application for interacting with Casper/Ghost nodes that are exposing RPC only to the localhost" +version = "0.2.6" edition = "2021" [dependencies] diff --git a/src/components/wallet/accounts.rs b/src/components/wallet/accounts.rs index 38ab413..cfdcc46 100644 --- a/src/components/wallet/accounts.rs +++ b/src/components/wallet/accounts.rs @@ -39,6 +39,7 @@ struct AccountInfo { address: String, account_id: [u8; 32], seed: String, + #[allow(dead_code)] pair_signer: PairSigner, }