2022-10-30 03:26:31 -04:00
|
|
|
mod types;
|
2022-10-30 10:54:17 -04:00
|
|
|
pub use types::{TendermintClientMinimal, TendermintValidator};
|
2022-10-30 03:26:31 -04:00
|
|
|
|
2022-10-25 02:51:33 -04:00
|
|
|
mod validators;
|
2022-10-21 02:30:38 -04:00
|
|
|
|
2022-10-30 10:08:35 -04:00
|
|
|
pub(crate) mod tendermint;
|
|
|
|
|
pub use tendermint::TendermintImport;
|
2022-10-22 02:15:22 -04:00
|
|
|
|
2022-10-30 10:54:17 -04:00
|
|
|
mod block_import;
|
2022-10-21 02:30:38 -04:00
|
|
|
mod import_queue;
|
2022-10-30 10:08:35 -04:00
|
|
|
pub use import_queue::{TendermintImportQueue, import_queue};
|
2022-07-15 00:05:00 -04:00
|
|
|
|
2022-10-30 05:16:25 -04:00
|
|
|
pub(crate) mod gossip;
|
2022-10-30 10:08:35 -04:00
|
|
|
pub(crate) mod authority;
|
|
|
|
|
pub use authority::TendermintAuthority;
|
2022-10-30 01:21:10 -04:00
|
|
|
|
2022-10-21 05:28:26 -04:00
|
|
|
mod select_chain;
|
|
|
|
|
pub use select_chain::TendermintSelectChain;
|
|
|
|
|
|
2022-10-22 02:15:22 -04:00
|
|
|
const CONSENSUS_ID: [u8; 4] = *b"tend";
|