Skip to content

Commit

Permalink
Increase ED for AutoSwap to 1.5 PDEX (#937)
Browse files Browse the repository at this point in the history
## Describe your changes

Increase ED for AutoSwap to 1.5 PDEX
  • Loading branch information
Gauthamastro authored Mar 25, 2024
2 parents ef58440 + ec0abbb commit 3d7ed6e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions runtimes/mainnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// and set impl_version to 0. If only runtime
// implementation changes and behavior does not, then leave spec_version as
// is and increment impl_version.
spec_version: 341,
spec_version: 342,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down Expand Up @@ -1352,6 +1352,7 @@ parameter_types! {
pub const TheaPalletAccount: PalletId = PalletId(*b"th/accnt");
pub const WithdrawalSize: u32 = 10;
pub const ParaId: u32 = 2040;
pub const AutoSwapInitialNativeDeposit: Balance = 1500000000000;
}

impl thea_executor::Config for Runtime {
Expand All @@ -1370,7 +1371,7 @@ impl thea_executor::Config for Runtime {
type MultiAssetIdAdapter = AssetId;
type AssetBalanceAdapter = u128;
type GovernanceOrigin = EnsureRootOrHalfCouncil;
type ExistentialDeposit = ExistentialDeposit;
type ExistentialDeposit = AutoSwapInitialNativeDeposit;
}

#[cfg(feature = "runtime-benchmarks")]
Expand Down

0 comments on commit 3d7ed6e

Please sign in to comment.