Skip to content

Commit

Permalink
Fix clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 committed Aug 22, 2024
1 parent b819034 commit 9475ced
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/integration-test/src/tests/sequence_filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -557,10 +557,10 @@ fn double_transfer<Chain: ChainHandle, Counterparty: ChainHandle>(
token: &TaggedTokenRef<Chain>,
) -> Result<(), Error> {
// Create a pending transfer from B to A with sequence 1
chain_driver.ibc_transfer_token(channel, sender, recipient, &vec![token.clone()])?;
chain_driver.ibc_transfer_token(channel, sender, recipient, &vec![*token])?;

// Create a pending transfer from B to A with sequence 2
chain_driver.ibc_transfer_token(channel, sender, recipient, &vec![token.clone()])?;
chain_driver.ibc_transfer_token(channel, sender, recipient, &vec![*token])?;

Ok(())
}

0 comments on commit 9475ced

Please sign in to comment.