We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 608d1f9 commit d644165Copy full SHA for d644165
parachain-runtime/src/lib.rs
@@ -945,6 +945,7 @@ parameter_types! {
945
pub const ItemDeposit: Balance = 1 * DOLLARS;
946
pub const KeyLimit: u32 = 32;
947
pub const ValueLimit: u32 = 256;
948
+ pub const ChildMaxLen: u32 = 25;
949
}
950
951
impl pallet_uniques::Config for Runtime {
@@ -971,6 +972,7 @@ impl pallet_uniques::Config for Runtime {
971
972
impl pallet_fruniques::Config for Runtime {
973
type Event = Event;
974
type RemoveOrigin = RootOrThreeFifthsOfCouncil;
975
+ type ChildMaxLen = ChildMaxLen;
976
977
978
parameter_types! {
0 commit comments