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, }