Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

feat: update pallet-uniques string limits. #297 #298

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions runtime/stout/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -439,9 +439,9 @@ parameter_types! {
pub const DepositPerByte: Balance = deposit(0, 1);
pub const CollectionDeposit: Balance = 100 * UNITS;
pub const ItemDeposit: Balance = 1 * UNITS;
pub const StringLimit: u32 = 50;
pub const StringLimit: u32 = 128;
pub const KeyLimit: u32 = 32;
pub const ValueLimit: u32 = 256;
pub const ValueLimit: u32 = 64;
}

impl pallet_uniques::Config for Runtime {
Expand Down
4 changes: 2 additions & 2 deletions runtime/trappist/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -442,9 +442,9 @@ parameter_types! {
pub const DepositPerByte: Balance = deposit(0, 1);
pub const CollectionDeposit: Balance = 100 * UNITS;
pub const ItemDeposit: Balance = 1 * UNITS;
pub const StringLimit: u32 = 50;
pub const StringLimit: u32 = 128;
pub const KeyLimit: u32 = 32;
pub const ValueLimit: u32 = 256;
pub const ValueLimit: u32 = 64;
}

impl pallet_uniques::Config for Runtime {
Expand Down