soil-txpool 0.2.0

Soil transaction pool implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// This file is part of Soil.

// Copyright (C) Soil contributors.
// Copyright (C) Parity Technologies (UK) Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0

//! Substrate single state transaction pool implementation.

mod metrics;
mod revalidation;
pub(crate) mod single_state_txpool;

pub(crate) use single_state_txpool::prune_known_txs_for_block;
pub use single_state_txpool::{BasicPool, RevalidationType};