Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,10 @@ impl cumulus_pallet_parachain_system::Config for Runtime {
impl parachain_info::Config for Runtime {}

parameter_types! {
/// Amount of weight that can be spent per block to service messages.
/// Amount of weight that can be spent per block to service messages. This was increased
/// from 35% to 60% of the max block weight to accommodate the Ethereum beacon light client
/// extrinsics. The force_checkpoint and submit extrinsics (for submit, optionally) includes
/// the sync committee's pubkeys (512 x 48 bytes)
pub MessageQueueServiceWeight: Weight = Perbill::from_percent(60) * RuntimeBlockWeights::get().max_block;
}

Expand Down