From 8f93c1e21f8ee7ba31bb0195c5ab29eff3b47ae6 Mon Sep 17 00:00:00 2001 From: sergey-melnychuk <8093171+sergey-melnychuk@users.noreply.github.com> Date: Tue, 24 Sep 2024 19:50:23 +0200 Subject: [PATCH] style: fmt --- tests/account_katana.rs | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/tests/account_katana.rs b/tests/account_katana.rs index 7bfd1fd4..77143492 100644 --- a/tests/account_katana.rs +++ b/tests/account_katana.rs @@ -1,12 +1,16 @@ use std::{thread, time}; -use beerus::{client::Http, gen::{ - client::Client, Address, BlockId, BlockTag, BroadcastedDeclareTxn, - BroadcastedDeployAccountTxn, BroadcastedInvokeTxn, BroadcastedTxn, - DeployAccountTxn, DeployAccountTxnV1, DeployAccountTxnV1Type, - DeployAccountTxnV1Version, Felt, InvokeTxn, InvokeTxnV1, InvokeTxnV1Type, - InvokeTxnV1Version, Rpc, SimulationFlagForEstimateFee, TxnHash, -}}; +use beerus::{ + client::Http, + gen::{ + client::Client, Address, BlockId, BlockTag, BroadcastedDeclareTxn, + BroadcastedDeployAccountTxn, BroadcastedInvokeTxn, BroadcastedTxn, + DeployAccountTxn, DeployAccountTxnV1, DeployAccountTxnV1Type, + DeployAccountTxnV1Version, Felt, InvokeTxn, InvokeTxnV1, + InvokeTxnV1Type, InvokeTxnV1Version, Rpc, SimulationFlagForEstimateFee, + TxnHash, + }, +}; use common::katana::Katana; mod common;