Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
teddav committed Oct 19, 2023
1 parent 19ddcc4 commit 8971374
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/cast/bin/cmd/wallet/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ impl WalletSubcommands {

let builder = MnemonicBuilder::<English>::default().phrase(phrase.as_str());
let derivation_path = "m/44'/60'/0'/0/";
let wallets = (0..accounts).map(|i| {
let wallets = (0..accounts)
.map(|i| {
builder
.clone()
.derivation_path(&format!("{derivation_path}{i}"))
Expand Down

0 comments on commit 8971374

Please sign in to comment.