Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberb committed Nov 23, 2023
1 parent 99ca9df commit af1e5af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,7 @@ async fn test_subnet_send_token_processing(
.i_erc20_messaging
.send_token(
TARGET_SUBNET_ID_2.into(),
i_erc20.address(),
i_erc20.address().to_string(),
"00000000000000000000000000000000000000AA".parse()?,
U256::from(2),
)
Expand Down Expand Up @@ -1515,7 +1515,7 @@ async fn test_subnet_multiple_send_token_in_a_block(
if let Err(e) = i_erc20_messaging
.send_token(
target_subnet.into(),
i_erc20_address,
i_erc20_address.to_string(),
"00000000000000000000000000000000000000AA".parse().unwrap(),
U256::from(i),
)
Expand Down

0 comments on commit af1e5af

Please sign in to comment.