Skip to content

Commit

Permalink
Merge pull request #1 from bkontur/encointer-fix
Browse files Browse the repository at this point in the history
Encointer benchmarks fix and nits
  • Loading branch information
brenzi authored Aug 25, 2024
2 parents 7899074 + 774a276 commit b8296dd
Show file tree
Hide file tree
Showing 9 changed files with 591 additions and 589 deletions.
4 changes: 2 additions & 2 deletions system-parachains/coretime/coretime-kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -951,10 +951,10 @@ impl_runtime_apis! {
}

fn teleportable_asset_and_dest() -> Option<(Asset, Location)> {
// Relay/native token can be teleported between AH and Relay.
// Relay/native token can be teleported between Coretime and Relay.
Some((
Asset {
fun: Fungible(SYSTEM_PARA_EXISTENTIAL_DEPOSIT),
fun: Fungible(ExistentialDeposit::get()),
id: AssetId(Parent.into())
},
Parent.into(),
Expand Down
4 changes: 2 additions & 2 deletions system-parachains/coretime/coretime-polkadot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -937,10 +937,10 @@ impl_runtime_apis! {
}

fn teleportable_asset_and_dest() -> Option<(Asset, Location)> {
// Relay/native token can be teleported between AH and Relay.
// Relay/native token can be teleported between Coretime and Relay.
Some((
Asset {
fun: Fungible(SYSTEM_PARA_EXISTENTIAL_DEPOSIT),
fun: Fungible(ExistentialDeposit::get()),
id: AssetId(Parent.into())
},
Parent.into(),
Expand Down
Loading

0 comments on commit b8296dd

Please sign in to comment.