Skip to content
Snippets Groups Projects
Verified Commit 3a22201b authored by Michal Kucharczyk's avatar Michal Kucharczyk
Browse files

rename: txmempool -> tx_mem_pool

parent 6f6f9f13
No related merge requests found
......@@ -69,7 +69,7 @@ use prometheus_endpoint::Registry as PrometheusRegistry;
use sp_blockchain::{HashAndNumber, TreeRoute};
pub type FullPool<Block, Client> = ForkAwareTxPool<FullChainApi<Client, Block>, Block>;
use super::{txmempool::TxMemPool, view::View, view_store::ViewStore};
use super::{tx_mem_pool::TxMemPool, view::View, view_store::ViewStore};
impl<Block, Client> FullPool<Block, Client>
where
......
......@@ -22,7 +22,7 @@ pub(crate) mod fork_aware_txpool;
mod import_notification_sink;
mod metrics;
mod multi_view_listener;
mod txmempool;
mod tx_mem_pool;
mod view;
mod view_revalidation;
mod view_store;
......
......@@ -25,7 +25,7 @@ use sc_utils::mpsc::{tracing_unbounded, TracingUnboundedReceiver, TracingUnbound
use sp_blockchain::HashAndNumber;
use sp_runtime::traits::Block as BlockT;
use super::txmempool::TxMemPool;
use super::tx_mem_pool::TxMemPool;
use futures::prelude::*;
use super::view::{FinishRevalidationWorkerChannels, View};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment