Fix renaming artifacts (#11455)

This commit is contained in:
Jegor Sidorenko
2022-05-19 15:39:43 +02:00
committed by GitHub
parent 20ef36f1b2
commit 807a95230b
+4 -4
View File
@@ -1410,8 +1410,8 @@ impl pallet_gilt::Config for Runtime {
}
parameter_types! {
pub const ClassDeposit: Balance = 100 * DOLLARS;
pub const InstanceDeposit: Balance = 1 * DOLLARS;
pub const CollectionDeposit: Balance = 100 * DOLLARS;
pub const ItemDeposit: Balance = 1 * DOLLARS;
pub const KeyLimit: u32 = 32;
pub const ValueLimit: u32 = 256;
}
@@ -1422,8 +1422,8 @@ impl pallet_uniques::Config for Runtime {
type ItemId = u32;
type Currency = Balances;
type ForceOrigin = frame_system::EnsureRoot<AccountId>;
type CollectionDeposit = ClassDeposit;
type ItemDeposit = InstanceDeposit;
type CollectionDeposit = CollectionDeposit;
type ItemDeposit = ItemDeposit;
type MetadataDepositBase = MetadataDepositBase;
type AttributeDepositBase = MetadataDepositBase;
type DepositPerByte = MetadataDepositPerByte;