b6d35f6faf
Updated 4763 files with dual copyright: - Parity Technologies (UK) Ltd. - Dijital Kurdistan Tech Institute
40 lines
1.8 KiB
Rust
40 lines
1.8 KiB
Rust
// Copyright (C) Parity Technologies (UK) Ltd. and Dijital Kurdistan Tech Institute
|
|
// This file is part of Pezcumulus.
|
|
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
|
|
|
|
// Pezcumulus is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Pezcumulus is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Pezcumulus. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
//! The relay-chain provided consensus algorithm for teyrchains.
|
|
//!
|
|
//! This is the simplest consensus algorithm you can use when developing a teyrchain. It is a
|
|
//! permission-less consensus algorithm that doesn't require any staking or similar to join as a
|
|
//! collator. In this algorithm the consensus is provided by the relay-chain. This works in the
|
|
//! following way.
|
|
//!
|
|
//! 1. Each node that sees itself as a collator is free to build a teyrchain candidate.
|
|
//!
|
|
//! 2. This teyrchain candidate is send to the teyrchain validators that are part of the relay
|
|
//! chain.
|
|
//!
|
|
//! 3. The teyrchain validators validate at most X different teyrchain candidates, where X is the
|
|
//! total number of teyrchain validators.
|
|
//!
|
|
//! 4. The teyrchain candidate that is backed by the most validators is chosen by the relay-chain
|
|
//! block producer to be added as backed candidate on chain.
|
|
//!
|
|
//! 5. After the teyrchain candidate got backed and included, all collators start at 1.
|
|
|
|
mod import_queue;
|
|
pub use import_queue::Verifier;
|