Skip to content

Commit

Permalink
Update Existential deposit (#198)
Browse files Browse the repository at this point in the history
closes #197
  • Loading branch information
DmitriVT authored Nov 22, 2024
2 parents e1b8c63 + abe66c4 commit 2a15500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("atleta"),
impl_name: create_runtime_str!("atleta"),
authoring_version: 1,
spec_version: 6,
spec_version: 7,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 3,
Expand Down Expand Up @@ -382,7 +382,7 @@ impl pallet_timestamp::Config for Runtime {

// balances
parameter_types! {
pub const ExistentialDeposit: Balance = 30 * CENTS;
pub const ExistentialDeposit: Balance = 0;
// For weight estimation, we assume that the most locks on an individual account will be 50.
// This number may need to be adjusted in the future if this assumption no longer holds true.
pub const MaxLocks: u32 = 50;
Expand Down

0 comments on commit 2a15500

Please sign in to comment.