From b0b0e1d43f705768f564145bcd4969c3866288f1 Mon Sep 17 00:00:00 2001 From: Martin Hloska Date: Tue, 7 May 2024 14:54:54 +0200 Subject: [PATCH] update identity's bytedeposit --- runtime/basilisk/src/system.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/basilisk/src/system.rs b/runtime/basilisk/src/system.rs index 322fc9769d..a866388dc9 100644 --- a/runtime/basilisk/src/system.rs +++ b/runtime/basilisk/src/system.rs @@ -477,7 +477,7 @@ impl pallet_collator_rewards::Config for Runtime { parameter_types! { pub const BasicDeposit: Balance = 5 * DOLLARS; - pub const FieldDeposit: Balance = DOLLARS; + pub const ByteDeposit: Balance = DOLLARS / 10; pub const SubAccountDeposit: Balance = 5 * DOLLARS; pub const MaxSubAccounts: u32 = 100; pub const MaxAdditionalFields: u32 = 100; @@ -491,7 +491,7 @@ impl pallet_identity::Config for Runtime { type RuntimeEvent = RuntimeEvent; type Currency = Balances; type BasicDeposit = BasicDeposit; - type ByteDeposit = FieldDeposit; //TODO: correct ?! + type ByteDeposit = ByteDeposit; type SubAccountDeposit = SubAccountDeposit; type MaxSubAccounts = MaxSubAccounts; type IdentityInformation = pallet_identity::legacy::IdentityInfo;