Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

Commit

Permalink
IPC-347: make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
adlrocha committed Nov 1, 2023
1 parent a41ac21 commit d8e34fa
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions ipc/cli/src/commands/subnet/join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,7 @@ impl CommandLineHandler for JoinSubnet {
if let Some(initial_balance) = arguments.initial_balance {
println!("pre-funding address with {initial_balance}");
provider
.prefund_subnet(
subnet.clone(),
from,
f64_to_token_amount(initial_balance.clone())?,
)
.prefund_subnet(subnet.clone(), from, f64_to_token_amount(initial_balance)?)
.await?;
}
let epoch = provider
Expand Down

0 comments on commit d8e34fa

Please sign in to comment.