Skip to main content

soil_consensus/
lib.rs

1// This file is part of Soil.
2
3// Copyright (C) Soil contributors.
4// Copyright (C) Parity Technologies (UK) Ltd.
5// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
6
7//! Collection of common engine-support consensus implementations.
8
9pub mod epochs;
10pub mod slots;
11
12mod longest_chain;
13pub mod shared_data;
14
15pub use longest_chain::LongestChain;