diff --git a/forc-plugins/forc-crypto/src/args.rs b/forc-plugins/forc-crypto/src/args.rs index 5617473b5c0..3ca19548609 100644 --- a/forc-plugins/forc-crypto/src/args.rs +++ b/forc-plugins/forc-crypto/src/args.rs @@ -15,7 +15,7 @@ pub struct HashArgs { /// loaded. /// /// 2. A binary string encoded as a hex string. If that is the case, the - /// hex is decoded a Vec is passed + /// hex is decoded and passed as a Vec /// /// 3. A string. This is the last option, if the string is "-", `stdin` /// is read instead. Otherwise the raw string is converted to a Vec diff --git a/forc-plugins/forc-crypto/src/content.rs b/forc-plugins/forc-crypto/src/content.rs deleted file mode 100644 index 8b137891791..00000000000 --- a/forc-plugins/forc-crypto/src/content.rs +++ /dev/null @@ -1 +0,0 @@ - diff --git a/forc-plugins/forc-crypto/src/keygen/new_key.rs b/forc-plugins/forc-crypto/src/keygen/new_key.rs index 261cd5389c0..9cd930c573d 100644 --- a/forc-plugins/forc-crypto/src/keygen/new_key.rs +++ b/forc-plugins/forc-crypto/src/keygen/new_key.rs @@ -17,7 +17,7 @@ use std::ops::Deref; #[derive(Debug, clap::Args)] #[clap(author, version, about = "Creates a new key for use with fuel-core")] pub struct Arg { - /// Key type to generate. It can either be `block-production` or `p2p`. + /// Key type to generate. It can either be `block-production` or `peering`. #[clap( long = "key-type", short = 'k', diff --git a/forc-plugins/forc-crypto/src/keygen/parse_secret.rs b/forc-plugins/forc-crypto/src/keygen/parse_secret.rs index 786415ab560..694c60e4670 100644 --- a/forc-plugins/forc-crypto/src/keygen/parse_secret.rs +++ b/forc-plugins/forc-crypto/src/keygen/parse_secret.rs @@ -17,7 +17,7 @@ use std::{ops::Deref, str::FromStr}; pub struct Arg { /// A private key in hex format secret: String, - /// Key type to generate. It can either be `block-production` or `p2p`. + /// Key type to generate. It can either be `block-production` or `peering`. #[clap( long = "key-type", short = 'k', diff --git a/forc-plugins/forc-crypto/src/main.rs b/forc-plugins/forc-crypto/src/main.rs index 57b73b3edad..25515a0ce45 100644 --- a/forc-plugins/forc-crypto/src/main.rs +++ b/forc-plugins/forc-crypto/src/main.rs @@ -12,7 +12,6 @@ use termion::screen::IntoAlternateScreen; mod address; mod args; -mod content; mod keccak256; mod keygen; mod sha256;