Skip to content
Snippets Groups Projects
Commit 7dbf9710 authored by asynchronous rob's avatar asynchronous rob Committed by GitHub
Browse files

add revert consensus log (#3275)

parent 9887b49e
Branches
No related merge requests found
......@@ -1046,6 +1046,16 @@ pub enum ConsensusLog {
/// number in the current chain, inclusive.
#[codec(index = 3)]
ForceApprove(BlockNumber),
/// A signal to revert the block number in the same chain as the
/// header this digest is part of and all of its descendents.
///
/// It is a no-op for a block to contain a revert digest targeting
/// its own number or a higher number.
///
/// In practice, these are issued when on-chain logic has detected an
/// invalid parachain block within its own chain, due to a dispute.
#[codec(index = 4)]
Revert(BlockNumber)
}
impl ConsensusLog {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment