Skip to content

Commit

Permalink
add missing new rmrk parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
jasl committed Feb 8, 2023
1 parent c0d890b commit af02797
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions runtime/khala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,7 @@ impl pallet_uniques::Config for Runtime {
parameter_types! {
pub const ResourceSymbolLimit: u32 = 10;
pub const MaxPriorities: u32 = 25;
pub const PropertiesLimit: u32 = 15;
pub const MaxResourcesOnMint: u32 = 100;
pub const NestingBudget: u32 = 200;
}
Expand All @@ -917,6 +918,7 @@ impl pallet_rmrk_core::Config for Runtime {
type ResourceSymbolLimit = ResourceSymbolLimit;
type PartsLimit = rmrk_core::PartsLimit;
type MaxPriorities = MaxPriorities;
type PropertiesLimit = PropertiesLimit;
type NestingBudget = NestingBudget;
type CollectionSymbolLimit = rmrk_core::CollectionSymbolLimit;
type MaxResourcesOnMint = MaxResourcesOnMint;
Expand Down
2 changes: 2 additions & 0 deletions runtime/rhala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,7 @@ impl pallet_uniques::Config for Runtime {
parameter_types! {
pub const ResourceSymbolLimit: u32 = 10;
pub const MaxPriorities: u32 = 25;
pub const PropertiesLimit: u32 = 15;
pub const MaxResourcesOnMint: u32 = 100;
pub const NestingBudget: u32 = 200;
}
Expand All @@ -917,6 +918,7 @@ impl pallet_rmrk_core::Config for Runtime {
type ResourceSymbolLimit = ResourceSymbolLimit;
type PartsLimit = rmrk_core::PartsLimit;
type MaxPriorities = MaxPriorities;
type PropertiesLimit = PropertiesLimit;
type NestingBudget = NestingBudget;
type CollectionSymbolLimit = rmrk_core::CollectionSymbolLimit;
type MaxResourcesOnMint = MaxResourcesOnMint;
Expand Down
2 changes: 2 additions & 0 deletions runtime/thala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -895,6 +895,7 @@ impl pallet_uniques::Config for Runtime {
parameter_types! {
pub const ResourceSymbolLimit: u32 = 10;
pub const MaxPriorities: u32 = 25;
pub const PropertiesLimit: u32 = 15;
pub const MaxResourcesOnMint: u32 = 100;
pub const NestingBudget: u32 = 200;
}
Expand All @@ -905,6 +906,7 @@ impl pallet_rmrk_core::Config for Runtime {
type ResourceSymbolLimit = ResourceSymbolLimit;
type PartsLimit = rmrk_core::PartsLimit;
type MaxPriorities = MaxPriorities;
type PropertiesLimit = PropertiesLimit;
type NestingBudget = NestingBudget;
type CollectionSymbolLimit = rmrk_core::CollectionSymbolLimit;
type MaxResourcesOnMint = MaxResourcesOnMint;
Expand Down

0 comments on commit af02797

Please sign in to comment.