mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-08 08:57:21 +00:00
fbd2ac8f3b
* session: runtime api for generating session membership proofs * grandpa: add runtime api for creating equivocation report txs * grandpa: submit signed equivocation report transactions * grandpa: use proper equivocation report type * grandpa: report equivocations * grandpa: validate equivocation proof * grandpa: update to finality-grandpa 0.9.1 * grandpa: fix encoding of session membership proof * grandpa: initialize set id session mapping for genesis session * grandpa: fix bug in set_id session validation * fix compilation * cleanup from merge conflicts * cleanup crate tomls * grandpa: refactor equivocation handling to separate trait * node-template: fix compilation * fix test compilation * bump finality-grandpa to v0.10.2 * rpc: fix runtime version test * CHERRY-PICK #4200: Add documentation to SubmitSignedTransaction and actually make it work Squashed commit of the following: commit 4f2cb0b1c588a06f2f3b478bb4b28b5cb29d54b9 Author: Tomasz Drwięga <tomasz@parity.io> Date: Tue Dec 3 16:29:33 2019 +0100 Split the method to avoid confusing type error message. commit c5bf24eeaaf902add89ed1b046b22c4a4aaeb2cd Author: Tomasz Drwięga <tomasz@parity.io> Date: Tue Dec 3 16:19:55 2019 +0100 Make accounts optional, fix logic. commit 97db1ef556e023cf6847e5ffdb036c0e3ea6fb0a Author: Tomasz Drwięga <tomasz@parity.io> Date: Tue Dec 3 10:06:20 2019 +0100 Remove warning. commit 535f5c116d1a2e826eaf90c3f7e6798e443d61d8 Merge: 5162572170f1a5f651Author: Tomasz Drwięga <tomasz@parity.io> Date: Tue Dec 3 07:08:05 2019 +0100 Merge branch 'master' into td-signed-transactions commit 516257217bac89fcebd083712f4ea68b7b23b55a Merge: ac98248c62e68c80c2Author: Tomasz Drwięga <tomasz@parity.io> Date: Mon Dec 2 13:57:25 2019 +0100 Merge branch 'master' into td-signed-transactions commit ac98248c6c56cff381130645a82a13d29933cf83 Author: Tomasz Drwięga <tomasz@parity.io> Date: Mon Nov 25 17:34:52 2019 +0100 Forgotten import. commit 67a3c19031506c28e31c6bc4a90fff62d467dd58 Author: Tomasz Drwięga <tomasz@parity.io> Date: Mon Nov 25 17:32:10 2019 +0100 Fix naming and bounds. commit 93e768ea9df97a4629fca1f9bc4b108fdb33f876 Author: Tomasz Drwięga <tomasz@parity.io> Date: Mon Nov 25 17:01:05 2019 +0100 Add documentation to signed transactions and actually make them work. * grandpa: skip block initialization on report submission method * primitives: allow transaction pool access by default for offchain calls * grandpa: unused parameters * grandpa: remove unused method * grandpa: enable equivocation reporting * grandpa: add workaround for parameter encoding * grandpa: fix localized_payload calls in tests * fix submit_report_equivocation_extrinsic in runtimes * node: fix submit transaction test compilation * node: bump spec_version * rpc: fix api version test * grandpa: allow custom equivocation offence type * grandpa: add test for authorities::next_change_height * grandpa: cleanup report_equivocation function * node: move reporting app crypto to node-primitives * grandpa: move equivocation traits to own module * grandpa: rename app-crypto crate import * grandpa: export equivocation types * node: bump spec_version * grandpa: rename EquivocationReport to EquivocationProof * grandpa: add missing docs to primitives * grandpa: add missing docs to equivocation * node: fix compilation * grandpa: add missing docs to pallet * node: bump spec_version * fix whitespace * grandpa: return error on offence reporting * grandpa: expose session and validator count in proofs through traits * grandpa: use strong key in module KeyOwnerProofSystem * grandpa: move key ownership proof to grandpa runtime api * grandpa: remove unnecessary cloning when checking equivocation proof * grandpa: make report_equivocation a method in Environment * support: implement KeyOwnerProofSystem for () * grandpa: move KeyOwnerProofSystem to module trait * test-utils: fix runtime compilation * grandpa: fix test compilation * grandpa: fix test compilation after merge * grandpa: simplify transaction submission types * grandpa: validate equivocation report in signed extension * client: fix test * node: use ValidateEquivocationReport signed extension * grandpa: expose key ownership proof under opaque type * grandpa: better docs on key ownership proofs * grandpa: add note about signed extension * grandpa: add ValidateEquivocationReport::new * grandpa: remove skip_initialize_block from runtime api * grandpa: use new offchain transaction submission API * grandpa: take set_id in generate_key_ownership_proof * grandpa: update to finality-grandpa v0.12.2 * grandpa: cleanup usages of AuthoritySet::current * grandpa: fix test * grandpa: add mocking utilities for equivocation reporting * grandpa: add test for equivocation reporting * grandpa: move SetIdSession initialization * grandpa: add more tests * node: enable historical session manager * node: bump spec_version * node: use strong key types in KeyOwnerProofSystem definitions * grandpa: export GrandpaEquivocationOffence type
555 lines
18 KiB
Rust
555 lines
18 KiB
Rust
// Copyright 2017-2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate 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.
|
|
|
|
// Substrate 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 Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! GRANDPA Consensus module for runtime.
|
|
//!
|
|
//! This manages the GRANDPA authority set ready for the native code.
|
|
//! These authorities are only for GRANDPA finality, not for consensus overall.
|
|
//!
|
|
//! In the future, it will also handle misbehavior reports, and on-chain
|
|
//! finality notifications.
|
|
//!
|
|
//! For full integration with GRANDPA, the `GrandpaApi` should be implemented.
|
|
//! The necessary items are re-exported via the `fg_primitives` crate.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
// re-export since this is necessary for `impl_apis` in runtime.
|
|
pub use sp_finality_grandpa as fg_primitives;
|
|
|
|
use sp_std::prelude::*;
|
|
|
|
use codec::{self as codec, Decode, Encode};
|
|
pub use fg_primitives::{AuthorityId, AuthorityList, AuthorityWeight, VersionedAuthorityList};
|
|
use fg_primitives::{
|
|
ConsensusLog, EquivocationProof, ScheduledChange, SetId, GRANDPA_AUTHORITIES_KEY,
|
|
GRANDPA_ENGINE_ID,
|
|
};
|
|
use frame_support::{
|
|
decl_error, decl_event, decl_module, decl_storage, storage, traits::KeyOwnerProofSystem,
|
|
Parameter,
|
|
};
|
|
use frame_system::{self as system, ensure_signed, DigestOf};
|
|
use sp_runtime::{
|
|
generic::{DigestItem, OpaqueDigestItemId},
|
|
traits::Zero,
|
|
DispatchResult, KeyTypeId,
|
|
};
|
|
use sp_staking::SessionIndex;
|
|
|
|
mod equivocation;
|
|
mod mock;
|
|
mod tests;
|
|
|
|
pub use equivocation::{
|
|
EquivocationHandler, GetSessionNumber, GetValidatorCount, GrandpaEquivocationOffence,
|
|
GrandpaOffence, GrandpaTimeSlot, HandleEquivocation, ValidateEquivocationReport,
|
|
};
|
|
|
|
pub trait Trait: frame_system::Trait {
|
|
/// The event type of this module.
|
|
type Event: From<Event> + Into<<Self as frame_system::Trait>::Event>;
|
|
|
|
/// The function call.
|
|
type Call: From<Call<Self>>;
|
|
|
|
/// The proof of key ownership, used for validating equivocation reports.
|
|
/// The proof must include the session index and validator count of the
|
|
/// session at which the equivocation occurred.
|
|
type KeyOwnerProof: Parameter + GetSessionNumber + GetValidatorCount;
|
|
|
|
/// The identification of a key owner, used when reporting equivocations.
|
|
type KeyOwnerIdentification: Parameter;
|
|
|
|
/// A system for proving ownership of keys, i.e. that a given key was part
|
|
/// of a validator set, needed for validating equivocation reports.
|
|
type KeyOwnerProofSystem: KeyOwnerProofSystem<
|
|
(KeyTypeId, AuthorityId),
|
|
Proof = Self::KeyOwnerProof,
|
|
IdentificationTuple = Self::KeyOwnerIdentification,
|
|
>;
|
|
|
|
/// The equivocation handling subsystem, defines methods to report an
|
|
/// offence (after the equivocation has been validated) and for submitting a
|
|
/// transaction to report an equivocation (from an offchain context).
|
|
/// NOTE: when enabling equivocation handling (i.e. this type isn't set to
|
|
/// `()`) you must add the `equivocation::ValidateEquivocationReport` signed
|
|
/// extension to the runtime's `SignedExtra` definition, otherwise
|
|
/// equivocation reports won't be properly validated.
|
|
type HandleEquivocation: HandleEquivocation<Self>;
|
|
}
|
|
|
|
/// A stored pending change, old format.
|
|
// TODO: remove shim
|
|
// https://github.com/paritytech/substrate/issues/1614
|
|
#[derive(Encode, Decode)]
|
|
pub struct OldStoredPendingChange<N> {
|
|
/// The block number this was scheduled at.
|
|
pub scheduled_at: N,
|
|
/// The delay in blocks until it will be applied.
|
|
pub delay: N,
|
|
/// The next authority set.
|
|
pub next_authorities: AuthorityList,
|
|
}
|
|
|
|
/// A stored pending change.
|
|
#[derive(Encode)]
|
|
pub struct StoredPendingChange<N> {
|
|
/// The block number this was scheduled at.
|
|
pub scheduled_at: N,
|
|
/// The delay in blocks until it will be applied.
|
|
pub delay: N,
|
|
/// The next authority set.
|
|
pub next_authorities: AuthorityList,
|
|
/// If defined it means the change was forced and the given block number
|
|
/// indicates the median last finalized block when the change was signaled.
|
|
pub forced: Option<N>,
|
|
}
|
|
|
|
impl<N: Decode> Decode for StoredPendingChange<N> {
|
|
fn decode<I: codec::Input>(value: &mut I) -> core::result::Result<Self, codec::Error> {
|
|
let old = OldStoredPendingChange::decode(value)?;
|
|
let forced = <Option<N>>::decode(value).unwrap_or(None);
|
|
|
|
Ok(StoredPendingChange {
|
|
scheduled_at: old.scheduled_at,
|
|
delay: old.delay,
|
|
next_authorities: old.next_authorities,
|
|
forced,
|
|
})
|
|
}
|
|
}
|
|
|
|
/// Current state of the GRANDPA authority set. State transitions must happen in
|
|
/// the same order of states defined below, e.g. `Paused` implies a prior
|
|
/// `PendingPause`.
|
|
#[derive(Decode, Encode)]
|
|
#[cfg_attr(test, derive(Debug, PartialEq))]
|
|
pub enum StoredState<N> {
|
|
/// The current authority set is live, and GRANDPA is enabled.
|
|
Live,
|
|
/// There is a pending pause event which will be enacted at the given block
|
|
/// height.
|
|
PendingPause {
|
|
/// Block at which the intention to pause was scheduled.
|
|
scheduled_at: N,
|
|
/// Number of blocks after which the change will be enacted.
|
|
delay: N
|
|
},
|
|
/// The current GRANDPA authority set is paused.
|
|
Paused,
|
|
/// There is a pending resume event which will be enacted at the given block
|
|
/// height.
|
|
PendingResume {
|
|
/// Block at which the intention to resume was scheduled.
|
|
scheduled_at: N,
|
|
/// Number of blocks after which the change will be enacted.
|
|
delay: N,
|
|
},
|
|
}
|
|
|
|
decl_event! {
|
|
pub enum Event {
|
|
/// New authority set has been applied.
|
|
NewAuthorities(AuthorityList),
|
|
/// Current authority set has been paused.
|
|
Paused,
|
|
/// Current authority set has been resumed.
|
|
Resumed,
|
|
}
|
|
}
|
|
|
|
decl_error! {
|
|
pub enum Error for Module<T: Trait> {
|
|
/// Attempt to signal GRANDPA pause when the authority set isn't live
|
|
/// (either paused or already pending pause).
|
|
PauseFailed,
|
|
/// Attempt to signal GRANDPA resume when the authority set isn't paused
|
|
/// (either live or already pending resume).
|
|
ResumeFailed,
|
|
/// Attempt to signal GRANDPA change with one already pending.
|
|
ChangePending,
|
|
/// Cannot signal forced change so soon after last.
|
|
TooSoon,
|
|
}
|
|
}
|
|
|
|
decl_storage! {
|
|
trait Store for Module<T: Trait> as GrandpaFinality {
|
|
/// State of the current authority set.
|
|
State get(fn state): StoredState<T::BlockNumber> = StoredState::Live;
|
|
|
|
/// Pending change: (signaled at, scheduled change).
|
|
PendingChange: Option<StoredPendingChange<T::BlockNumber>>;
|
|
|
|
/// next block number where we can force a change.
|
|
NextForced get(fn next_forced): Option<T::BlockNumber>;
|
|
|
|
/// `true` if we are currently stalled.
|
|
Stalled get(fn stalled): Option<(T::BlockNumber, T::BlockNumber)>;
|
|
|
|
/// The number of changes (both in terms of keys and underlying economic responsibilities)
|
|
/// in the "set" of Grandpa validators from genesis.
|
|
CurrentSetId get(fn current_set_id) build(|_| fg_primitives::SetId::default()): SetId;
|
|
|
|
/// A mapping from grandpa set ID to the index of the *most recent* session for which its
|
|
/// members were responsible.
|
|
SetIdSession get(fn session_for_set): map hasher(twox_64_concat) SetId => Option<SessionIndex>;
|
|
}
|
|
add_extra_genesis {
|
|
config(authorities): AuthorityList;
|
|
build(|config| {
|
|
Module::<T>::initialize(&config.authorities)
|
|
})
|
|
}
|
|
}
|
|
|
|
decl_module! {
|
|
pub struct Module<T: Trait> for enum Call where origin: T::Origin {
|
|
type Error = Error<T>;
|
|
|
|
fn deposit_event() = default;
|
|
|
|
/// Report voter equivocation/misbehavior. This method will verify the
|
|
/// equivocation proof and validate the given key ownership proof
|
|
/// against the extracted offender. If both are valid, the offence
|
|
/// will be reported.
|
|
///
|
|
/// Since the weight is 0 in order to avoid DoS pre-validation is implemented in a
|
|
/// `SignedExtension`.
|
|
#[weight = 0]
|
|
fn report_equivocation(
|
|
origin,
|
|
equivocation_proof: EquivocationProof<T::Hash, T::BlockNumber>,
|
|
key_owner_proof: T::KeyOwnerProof,
|
|
) {
|
|
let reporter_id = ensure_signed(origin)?;
|
|
|
|
let (session_index, validator_set_count) = (
|
|
key_owner_proof.session(),
|
|
key_owner_proof.validator_count(),
|
|
);
|
|
|
|
// we have already checked this proof in `SignedExtension`, we to
|
|
// check it again to get the full identification of the offender.
|
|
let offender =
|
|
T::KeyOwnerProofSystem::check_proof(
|
|
(fg_primitives::KEY_TYPE, equivocation_proof.offender().clone()),
|
|
key_owner_proof,
|
|
).ok_or("Invalid key ownership proof.")?;
|
|
|
|
// the set id and round when the offence happened
|
|
let set_id = equivocation_proof.set_id();
|
|
let round = equivocation_proof.round();
|
|
|
|
// report to the offences module rewarding the sender.
|
|
T::HandleEquivocation::report_offence(
|
|
vec![reporter_id],
|
|
<T::HandleEquivocation as HandleEquivocation<T>>::Offence::new(
|
|
session_index,
|
|
validator_set_count,
|
|
offender,
|
|
set_id,
|
|
round,
|
|
),
|
|
).map_err(|_| "Duplicate offence report.")?;
|
|
}
|
|
|
|
fn on_finalize(block_number: T::BlockNumber) {
|
|
// check for scheduled pending authority set changes
|
|
if let Some(pending_change) = <PendingChange<T>>::get() {
|
|
// emit signal if we're at the block that scheduled the change
|
|
if block_number == pending_change.scheduled_at {
|
|
if let Some(median) = pending_change.forced {
|
|
Self::deposit_log(ConsensusLog::ForcedChange(
|
|
median,
|
|
ScheduledChange {
|
|
delay: pending_change.delay,
|
|
next_authorities: pending_change.next_authorities.clone(),
|
|
}
|
|
))
|
|
} else {
|
|
Self::deposit_log(ConsensusLog::ScheduledChange(
|
|
ScheduledChange{
|
|
delay: pending_change.delay,
|
|
next_authorities: pending_change.next_authorities.clone(),
|
|
}
|
|
));
|
|
}
|
|
}
|
|
|
|
// enact the change if we've reached the enacting block
|
|
if block_number == pending_change.scheduled_at + pending_change.delay {
|
|
Self::set_grandpa_authorities(&pending_change.next_authorities);
|
|
Self::deposit_event(
|
|
Event::NewAuthorities(pending_change.next_authorities)
|
|
);
|
|
<PendingChange<T>>::kill();
|
|
}
|
|
}
|
|
|
|
// check for scheduled pending state changes
|
|
match <State<T>>::get() {
|
|
StoredState::PendingPause { scheduled_at, delay } => {
|
|
// signal change to pause
|
|
if block_number == scheduled_at {
|
|
Self::deposit_log(ConsensusLog::Pause(delay));
|
|
}
|
|
|
|
// enact change to paused state
|
|
if block_number == scheduled_at + delay {
|
|
<State<T>>::put(StoredState::Paused);
|
|
Self::deposit_event(Event::Paused);
|
|
}
|
|
},
|
|
StoredState::PendingResume { scheduled_at, delay } => {
|
|
// signal change to resume
|
|
if block_number == scheduled_at {
|
|
Self::deposit_log(ConsensusLog::Resume(delay));
|
|
}
|
|
|
|
// enact change to live state
|
|
if block_number == scheduled_at + delay {
|
|
<State<T>>::put(StoredState::Live);
|
|
Self::deposit_event(Event::Resumed);
|
|
}
|
|
},
|
|
_ => {},
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<T: Trait> Module<T> {
|
|
/// Get the current set of authorities, along with their respective weights.
|
|
pub fn grandpa_authorities() -> AuthorityList {
|
|
storage::unhashed::get_or_default::<VersionedAuthorityList>(GRANDPA_AUTHORITIES_KEY).into()
|
|
}
|
|
|
|
/// Set the current set of authorities, along with their respective weights.
|
|
fn set_grandpa_authorities(authorities: &AuthorityList) {
|
|
storage::unhashed::put(
|
|
GRANDPA_AUTHORITIES_KEY,
|
|
&VersionedAuthorityList::from(authorities),
|
|
);
|
|
}
|
|
|
|
/// Schedule GRANDPA to pause starting in the given number of blocks.
|
|
/// Cannot be done when already paused.
|
|
pub fn schedule_pause(in_blocks: T::BlockNumber) -> DispatchResult {
|
|
if let StoredState::Live = <State<T>>::get() {
|
|
let scheduled_at = <frame_system::Module<T>>::block_number();
|
|
<State<T>>::put(StoredState::PendingPause {
|
|
delay: in_blocks,
|
|
scheduled_at,
|
|
});
|
|
|
|
Ok(())
|
|
} else {
|
|
Err(Error::<T>::PauseFailed)?
|
|
}
|
|
}
|
|
|
|
/// Schedule a resume of GRANDPA after pausing.
|
|
pub fn schedule_resume(in_blocks: T::BlockNumber) -> DispatchResult {
|
|
if let StoredState::Paused = <State<T>>::get() {
|
|
let scheduled_at = <frame_system::Module<T>>::block_number();
|
|
<State<T>>::put(StoredState::PendingResume {
|
|
delay: in_blocks,
|
|
scheduled_at,
|
|
});
|
|
|
|
Ok(())
|
|
} else {
|
|
Err(Error::<T>::ResumeFailed)?
|
|
}
|
|
}
|
|
|
|
/// Schedule a change in the authorities.
|
|
///
|
|
/// The change will be applied at the end of execution of the block
|
|
/// `in_blocks` after the current block. This value may be 0, in which
|
|
/// case the change is applied at the end of the current block.
|
|
///
|
|
/// If the `forced` parameter is defined, this indicates that the current
|
|
/// set has been synchronously determined to be offline and that after
|
|
/// `in_blocks` the given change should be applied. The given block number
|
|
/// indicates the median last finalized block number and it should be used
|
|
/// as the canon block when starting the new grandpa voter.
|
|
///
|
|
/// No change should be signaled while any change is pending. Returns
|
|
/// an error if a change is already pending.
|
|
pub fn schedule_change(
|
|
next_authorities: AuthorityList,
|
|
in_blocks: T::BlockNumber,
|
|
forced: Option<T::BlockNumber>,
|
|
) -> DispatchResult {
|
|
if !<PendingChange<T>>::exists() {
|
|
let scheduled_at = <frame_system::Module<T>>::block_number();
|
|
|
|
if let Some(_) = forced {
|
|
if Self::next_forced().map_or(false, |next| next > scheduled_at) {
|
|
Err(Error::<T>::TooSoon)?
|
|
}
|
|
|
|
// only allow the next forced change when twice the window has passed since
|
|
// this one.
|
|
<NextForced<T>>::put(scheduled_at + in_blocks * 2.into());
|
|
}
|
|
|
|
<PendingChange<T>>::put(StoredPendingChange {
|
|
delay: in_blocks,
|
|
scheduled_at,
|
|
next_authorities,
|
|
forced,
|
|
});
|
|
|
|
Ok(())
|
|
} else {
|
|
Err(Error::<T>::ChangePending)?
|
|
}
|
|
}
|
|
|
|
/// Deposit one of this module's logs.
|
|
fn deposit_log(log: ConsensusLog<T::BlockNumber>) {
|
|
let log: DigestItem<T::Hash> = DigestItem::Consensus(GRANDPA_ENGINE_ID, log.encode());
|
|
<frame_system::Module<T>>::deposit_log(log.into());
|
|
}
|
|
|
|
// Perform module initialization, abstracted so that it can be called either through genesis
|
|
// config builder or through `on_genesis_session`.
|
|
fn initialize(authorities: &AuthorityList) {
|
|
if !authorities.is_empty() {
|
|
assert!(
|
|
Self::grandpa_authorities().is_empty(),
|
|
"Authorities are already initialized!"
|
|
);
|
|
Self::set_grandpa_authorities(authorities);
|
|
}
|
|
|
|
// NOTE: initialize first session of first set. this is necessary
|
|
// because we only update this `on_new_session` which isn't called
|
|
// for the genesis session.
|
|
SetIdSession::insert(0, 0);
|
|
}
|
|
|
|
/// Submits an extrinsic to report an equivocation. This method will sign an
|
|
/// extrinsic with a call to `report_equivocation` with any reporting keys
|
|
/// available in the keystore and will push the transaction to the pool.
|
|
/// Only useful in an offchain context.
|
|
pub fn submit_report_equivocation_extrinsic(
|
|
equivocation_proof: EquivocationProof<T::Hash, T::BlockNumber>,
|
|
key_owner_proof: T::KeyOwnerProof,
|
|
) -> Option<()> {
|
|
T::HandleEquivocation::submit_equivocation_report(equivocation_proof, key_owner_proof)
|
|
.ok()?;
|
|
|
|
Some(())
|
|
}
|
|
}
|
|
|
|
impl<T: Trait> Module<T> {
|
|
/// Attempt to extract a GRANDPA log from a generic digest.
|
|
pub fn grandpa_log(digest: &DigestOf<T>) -> Option<ConsensusLog<T::BlockNumber>> {
|
|
let id = OpaqueDigestItemId::Consensus(&GRANDPA_ENGINE_ID);
|
|
digest.convert_first(|l| l.try_to::<ConsensusLog<T::BlockNumber>>(id))
|
|
}
|
|
|
|
/// Attempt to extract a pending set-change signal from a digest.
|
|
pub fn pending_change(digest: &DigestOf<T>)
|
|
-> Option<ScheduledChange<T::BlockNumber>>
|
|
{
|
|
Self::grandpa_log(digest).and_then(|signal| signal.try_into_change())
|
|
}
|
|
|
|
/// Attempt to extract a forced set-change signal from a digest.
|
|
pub fn forced_change(digest: &DigestOf<T>)
|
|
-> Option<(T::BlockNumber, ScheduledChange<T::BlockNumber>)>
|
|
{
|
|
Self::grandpa_log(digest).and_then(|signal| signal.try_into_forced_change())
|
|
}
|
|
|
|
/// Attempt to extract a pause signal from a digest.
|
|
pub fn pending_pause(digest: &DigestOf<T>)
|
|
-> Option<T::BlockNumber>
|
|
{
|
|
Self::grandpa_log(digest).and_then(|signal| signal.try_into_pause())
|
|
}
|
|
|
|
/// Attempt to extract a resume signal from a digest.
|
|
pub fn pending_resume(digest: &DigestOf<T>)
|
|
-> Option<T::BlockNumber>
|
|
{
|
|
Self::grandpa_log(digest).and_then(|signal| signal.try_into_resume())
|
|
}
|
|
}
|
|
|
|
impl<T: Trait> sp_runtime::BoundToRuntimeAppPublic for Module<T> {
|
|
type Public = AuthorityId;
|
|
}
|
|
|
|
impl<T: Trait> pallet_session::OneSessionHandler<T::AccountId> for Module<T>
|
|
where T: pallet_session::Trait
|
|
{
|
|
type Key = AuthorityId;
|
|
|
|
fn on_genesis_session<'a, I: 'a>(validators: I)
|
|
where I: Iterator<Item=(&'a T::AccountId, AuthorityId)>
|
|
{
|
|
let authorities = validators.map(|(_, k)| (k, 1)).collect::<Vec<_>>();
|
|
Self::initialize(&authorities);
|
|
}
|
|
|
|
fn on_new_session<'a, I: 'a>(changed: bool, validators: I, _queued_validators: I)
|
|
where I: Iterator<Item=(&'a T::AccountId, AuthorityId)>
|
|
{
|
|
// Always issue a change if `session` says that the validators have changed.
|
|
// Even if their session keys are the same as before, the underlying economic
|
|
// identities have changed.
|
|
let current_set_id = if changed {
|
|
let next_authorities = validators.map(|(_, k)| (k, 1)).collect::<Vec<_>>();
|
|
if let Some((further_wait, median)) = <Stalled<T>>::take() {
|
|
let _ = Self::schedule_change(next_authorities, further_wait, Some(median));
|
|
} else {
|
|
let _ = Self::schedule_change(next_authorities, Zero::zero(), None);
|
|
}
|
|
CurrentSetId::mutate(|s| { *s += 1; *s })
|
|
} else {
|
|
// nothing's changed, neither economic conditions nor session keys. update the pointer
|
|
// of the current set.
|
|
Self::current_set_id()
|
|
};
|
|
|
|
// if we didn't issue a change, we update the mapping to note that the current
|
|
// set corresponds to the latest equivalent session (i.e. now).
|
|
let session_index = <pallet_session::Module<T>>::current_index();
|
|
SetIdSession::insert(current_set_id, &session_index);
|
|
}
|
|
|
|
fn on_disabled(i: usize) {
|
|
Self::deposit_log(ConsensusLog::OnDisabled(i as u64))
|
|
}
|
|
}
|
|
|
|
impl<T: Trait> pallet_finality_tracker::OnFinalizationStalled<T::BlockNumber> for Module<T> {
|
|
fn on_stalled(further_wait: T::BlockNumber, median: T::BlockNumber) {
|
|
// when we record old authority sets, we can use `pallet_finality_tracker::median`
|
|
// to figure out _who_ failed. until then, we can't meaningfully guard
|
|
// against `next == last` the way that normal session changes do.
|
|
<Stalled<T>>::put((further_wait, median));
|
|
}
|
|
}
|