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;