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"))]