Skip to content

Commit

Permalink
Use fully qualified TxPool usage
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrylavrenov committed Jan 8, 2024
1 parent 9b0bee1 commit 020def5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/humanode-rpc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use bioauth_flow_rpc::{Bioauth, BioauthServer, Signer, SignerFactory};
use bioauth_keys::traits::KeyExtractor as KeyExtractorT;
use fc_rpc::{
Eth, EthApiServer, EthBlockDataCacheTask, EthConfig, EthFilter, EthFilterApiServer, EthPubSub,
EthPubSubApiServer, Net, NetApiServer, TxPool, TxPoolApiServer, Web3, Web3ApiServer,
EthPubSubApiServer, Net, NetApiServer, TxPoolApiServer, Web3, Web3ApiServer,
};
use fc_rpc_core::types::{FeeHistoryCache, FilterPool};
use fc_storage::OverrideHandle;
Expand Down Expand Up @@ -346,7 +346,7 @@ where
.into_rpc(),
)?;

let eth_tx_pool = TxPool::new(Arc::clone(&client), graph);
let eth_tx_pool = fc_rpc::TxPool::new(Arc::clone(&client), graph);

if let Some(eth_filter_pool) = eth_filter_pool {
io.merge(
Expand Down

0 comments on commit 020def5

Please sign in to comment.