Skip to content

Commit

Permalink
update identity's bytedeposit
Browse files Browse the repository at this point in the history
  • Loading branch information
enthusiastmartin committed May 7, 2024
1 parent 67f712b commit b0b0e1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/basilisk/src/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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<MaxAdditionalFields>;
Expand Down

0 comments on commit b0b0e1d

Please sign in to comment.