1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! Copyright (c) 2022 MASSA LABS <info@massa.net>

//! Pool of operation && endorsements && denunciations waiting to be included in a block

#![warn(missing_docs)]
#![warn(unused_crate_dependencies)]

mod controller_impl;
mod denunciation_pool;
mod endorsement_pool;
mod operation_pool;
mod types;
mod worker;

pub use worker::start_pool_controller;

#[cfg(test)]
use mockall as _;

#[cfg(test)]
mod tests;