Expand description
Cumulus extension pallet for AuRa
This pallet extends the Substrate AuRa pallet to make it compatible with parachains. It
provides the Pallet, the Config and the GenesisConfig.
It is also required that the parachain runtime uses the provided BlockExecutor to properly
check the constructed block on the relay chain.
cumulus_pallet_parachain_system::register_validate_block! {
Runtime = Runtime,
BlockExecutor = cumulus_pallet_aura_ext::BlockExecutor::<Runtime, Executive>,
}Re-exports§
pub use consensus_hook::FixedVelocityConsensusHook;pub use pallet::*;
Modules§
- consensus_
hook - The definition of a
FixedVelocityConsensusHookfor consensus logic to manage block velocity. - migration
- pallet
- The
palletmodule in each FRAME pallet hosts the most important items needed to construct this pallet.
Structs§
- Block
Executor - The block executor used when validating a PoV at the relay chain.