From 92f2625655f8a440ce3b87b160bac4801904b8c0 Mon Sep 17 00:00:00 2001 From: Alex Todorov Date: Mon, 8 Jan 2024 11:49:31 +0200 Subject: [PATCH] Remove unused imports --- node/src/rpc/eth.rs | 2 +- node/src/rpc/mod.rs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/node/src/rpc/eth.rs b/node/src/rpc/eth.rs index 3358df2f7..44ceecf08 100644 --- a/node/src/rpc/eth.rs +++ b/node/src/rpc/eth.rs @@ -22,7 +22,7 @@ use sp_core::H256; use sp_inherents::CreateInherentDataProviders; use sp_runtime::traits::Block as BlockT; // Frontier -pub use fc_rpc::{EthBlockDataCacheTask, EthConfig, OverrideHandle, StorageOverride}; +pub use fc_rpc::{EthBlockDataCacheTask, EthConfig, OverrideHandle}; pub use fc_rpc_core::types::{FeeHistoryCache, FeeHistoryCacheLimit, FilterPool}; pub use fc_storage::overrides_handle; use fp_rpc::{ConvertTransaction, ConvertTransactionRuntimeApi, EthereumRuntimeRPCApi}; diff --git a/node/src/rpc/mod.rs b/node/src/rpc/mod.rs index 0cae29ff2..747b28932 100644 --- a/node/src/rpc/mod.rs +++ b/node/src/rpc/mod.rs @@ -26,8 +26,7 @@ use creditcoin3_runtime::{opaque::Block, AccountId, Balance, BlockNumber, Hash, mod eth; pub use self::eth::{ - consensus_data_provider::{self, BabeConsensusDataProvider}, - create_eth, overrides_handle, EthDeps, + consensus_data_provider::BabeConsensusDataProvider, create_eth, overrides_handle, EthDeps, }; type HasherFor = <::Header as HeaderT>::Hashing;