chore: cargo fmt

This commit is contained in:
Georgios Konstantopoulos 2021-09-18 01:01:40 -05:00
parent 83e953bc2f
commit 10843a774e
1 changed files with 4 additions and 4 deletions

View File

@ -6,6 +6,10 @@ use crate::{
PendingTransaction, QuorumProvider,
};
#[cfg(feature = "celo")]
use crate::CeloMiddleware;
use crate::Middleware;
use async_trait::async_trait;
use ethers_core::{
abi::{self, Detokenize, ParamType},
types::{
@ -16,10 +20,6 @@ use ethers_core::{
},
utils,
};
#[cfg(feature = "celo")]
use crate::CeloMiddleware;
use crate::Middleware;
use async_trait::async_trait;
use hex::FromHex;
use serde::{de::DeserializeOwned, Serialize};
use thiserror::Error;