Skip to content

Commit

Permalink
docs: clarify keystore path should point to a filename (#9004)
Browse files Browse the repository at this point in the history
clarify that you should point to a keystore by its file but it can be a custom directory
  • Loading branch information
zerosnacks authored Oct 2, 2024
1 parent 452066e commit 4469a65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/wallets/src/multi_wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ pub struct MultiWalletOpts {
)]
pub mnemonic_indexes: Option<Vec<u32>>,

/// Use the keystore in the given folder or file.
/// Use the keystore by its filename in the given folder.
#[arg(
long = "keystore",
visible_alias = "keystores",
Expand All @@ -173,7 +173,7 @@ pub struct MultiWalletOpts {
#[builder(default = "None")]
pub keystore_paths: Option<Vec<String>>,

/// Use a keystore from the default keystores folder (~/.foundry/keystores) by its filename
/// Use a keystore from the default keystores folder (~/.foundry/keystores) by its filename.
#[arg(
long = "account",
visible_alias = "accounts",
Expand Down

0 comments on commit 4469a65

Please sign in to comment.