Skip to content

Commit

Permalink
remove redundant clone
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair-singh committed Nov 2, 2023
1 parent 3c8cd80 commit d767046
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion parachain/primitives/router/src/inbound/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ where
let mut create_instructions = vec![
UniversalOrigin(GlobalConsensus(network)),
WithdrawAsset(buy_execution_fee.clone().into()),
BuyExecution { fees: buy_execution_fee.clone(), weight_limit: Unlimited },
BuyExecution { fees: buy_execution_fee, weight_limit: Unlimited },
SetAppendix(
vec![
RefundSurplus,
Expand Down
1 change: 0 additions & 1 deletion smoketest/tests/send_token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ use snowbridge_smoketest::{
use sp_core::Encode;
use subxt::utils::AccountId32;

// TODO: test sendNativeToken
#[tokio::test]
async fn send_token() {
let test_clients = initial_clients().await.expect("initialize clients");
Expand Down

0 comments on commit d767046

Please sign in to comment.