From ead0e1f305e745d79bb0f47da73d57fdc85f3029 Mon Sep 17 00:00:00 2001 From: zees-dev Date: Fri, 3 Jan 2025 13:42:28 +1300 Subject: [PATCH] cargo fmt --all --- forc-plugins/forc-client/src/util/tx.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/forc-plugins/forc-client/src/util/tx.rs b/forc-plugins/forc-client/src/util/tx.rs index 755484c09f4..924605511dc 100644 --- a/forc-plugins/forc-client/src/util/tx.rs +++ b/forc-plugins/forc-client/src/util/tx.rs @@ -275,12 +275,16 @@ pub(crate) async fn select_account( } } -pub(crate) async fn select_local_wallet_account(password: &str, provider: &Provider) -> Result { +pub(crate) async fn select_local_wallet_account( + password: &str, + provider: &Provider, +) -> Result { let wallet_path = default_wallet_path(); let accounts = collect_user_accounts(&wallet_path, password)?; let account_balances = collect_account_balances(&accounts, provider).await?; let base_asset_id = provider.base_asset_id(); - let selections = format_base_asset_account_balances(&accounts, &account_balances, base_asset_id)?; + let selections = + format_base_asset_account_balances(&accounts, &account_balances, base_asset_id)?; let mut account_index; loop {