Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
salman01zp committed Feb 27, 2024
1 parent b228440 commit 5a2e687
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions relayer-tests/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ pub fn vanchor_deposit_setup(
recipient,
ext_amount: ext_data.ext_amount.into(),
relayer,
fee: ext_data.fee.into(),
fee: ext_data.fee,
refund,
token,
};
Expand Down Expand Up @@ -260,6 +260,7 @@ pub fn vanchor_deposit_setup(
}
}

#[allow(clippy::too_many_arguments)]
pub fn vanchor_withdraw_setup(
typed_source_chain_id: u64,
types_target_chain_id: u64,
Expand Down Expand Up @@ -348,8 +349,8 @@ pub fn vanchor_withdraw_setup(
recipient,
ext_amount: ext_data.ext_amount.into(),
relayer,
fee: ext_data.fee.into(),
refund: ext_data.refund.into(),
fee: ext_data.fee,
refund: ext_data.refund,
token,
};

Expand Down

0 comments on commit 5a2e687

Please sign in to comment.