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;