Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Roznovjak committed Aug 28, 2024
1 parent 4b0fb4d commit b52420b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/basilisk/src/apis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ impl_runtime_apis! {

fn reserve_transferable_asset_and_dest() -> Option<(Asset, Location)> {
ParachainSystem::open_outbound_hrmp_channel_for_benchmarks_or_tests(
RandomParaId::get().into()
RandomParaId::get()
);

Some((
Expand All @@ -277,7 +277,7 @@ impl_runtime_apis! {

fn set_up_complex_asset_transfer() -> Option<(Assets, u32, Location, Box<dyn FnOnce()>)> {
ParachainSystem::open_outbound_hrmp_channel_for_benchmarks_or_tests(
RandomParaId::get().into()
RandomParaId::get()
);

let destination = ParentThen(Parachain(RandomParaId::get().into()).into()).into();
Expand Down

0 comments on commit b52420b

Please sign in to comment.