Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Bump assigned_slots params #6991

Merged
merged 2 commits into from
Apr 24, 2023
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
6 changes: 3 additions & 3 deletions runtime/rococo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1295,9 +1295,9 @@ impl paras_sudo_wrapper::Config for Runtime {}

parameter_types! {
pub const PermanentSlotLeasePeriodLength: u32 = 365;
pub const TemporarySlotLeasePeriodLength: u32 = 3;
pub const MaxPermanentSlots: u32 = 40;
pub const MaxTemporarySlots: u32 = 40;
pub const TemporarySlotLeasePeriodLength: u32 = 5;
pub const MaxPermanentSlots: u32 = 100;
pub const MaxTemporarySlots: u32 = 100;
pub const MaxTemporarySlotPerLeasePeriod: u32 = 5;
}

Expand Down