From 6456098bec797de73bb138ea3136065f631cc899 Mon Sep 17 00:00:00 2001 From: joshieDo <93316087+joshieDo@users.noreply.github.com> Date: Tue, 26 Nov 2024 15:12:46 +0000 Subject: [PATCH] fmt --- crates/constants/src/lib.rs | 2 +- crates/node/src/rpc.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/constants/src/lib.rs b/crates/constants/src/lib.rs index f10a6de..812572f 100644 --- a/crates/constants/src/lib.rs +++ b/crates/constants/src/lib.rs @@ -1,4 +1,4 @@ -use alloy_primitives::{Address, address}; +use alloy_primitives::{address, Address}; /// Withdrawal predeployed contract address. /// diff --git a/crates/node/src/rpc.rs b/crates/node/src/rpc.rs index 3f94b7f..50cd1de 100644 --- a/crates/node/src/rpc.rs +++ b/crates/node/src/rpc.rs @@ -13,6 +13,7 @@ use jsonrpsee::{ core::{async_trait, RpcResult}, proc_macros::rpc, }; +use odyssey_constants::WITHDRAWAL_CONTRACT; use reth_errors::RethError; use reth_rpc_eth_api::{ helpers::{EthState, FullEthApi}, @@ -22,7 +23,6 @@ use reth_rpc_eth_types::EthApiError; use reth_rpc_types_compat::proof::from_primitive_account_proof; use reth_trie_common::AccountProof; use tracing::trace; -use odyssey_constants::WITHDRAWAL_CONTRACT; /// Odyssey `eth_` RPC namespace overrides. #[cfg_attr(not(test), rpc(server, namespace = "eth"))]