Skip to content

Commit b1e289f

Browse files
committed
enable multi block per slot
1 parent be47139 commit b1e289f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
241241
// `spec_version`, and `authoring_version` are the same between Wasm and native.
242242
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
243243
// the compatible custom types.
244-
spec_version: 365,
244+
spec_version: 366,
245245
impl_version: 1,
246246
apis: RUNTIME_API_VERSIONS,
247247
transaction_version: 1,
@@ -362,7 +362,7 @@ impl pallet_aura::Config for Runtime {
362362
type AuthorityId = AuraId;
363363
type DisabledValidators = ();
364364
type MaxAuthorities = ConstU32<32>;
365-
type AllowMultipleBlocksPerSlot = ConstBool<false>;
365+
type AllowMultipleBlocksPerSlot = ConstBool<true>;
366366
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Runtime>;
367367
}
368368

0 commit comments

Comments
 (0)