Skip to content

Commit

Permalink
style: clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
diegofigs committed May 13, 2024
1 parent bcd955b commit 4d32c13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dynamic_apis_tests/tests/it/eth_get_transaction_count.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async fn test_eth_get_transaction_count() -> anyhow::Result<()> {
let res = response.unwrap();
let z_nonce = i64::from_str_radix(&res[2..res.len()], 16).unwrap();
info!("Nonce: {:?}", z_nonce);
let mut last_nonce = 0;
// let mut last_nonce = 0;
for group_id in 1..task.data_groups.len() {
let receipt: String = task
.get_test_data_content_by_group_index(group_id, "receipt".to_string())
Expand All @@ -48,7 +48,7 @@ async fn test_eth_get_transaction_count() -> anyhow::Result<()> {
info!("Nonce: {:?}", nonce);
let result = nonce.cmp(&z_nonce);
assert_eq!(Ordering::Greater, result);
last_nonce = nonce;
// last_nonce = nonce;
}
info!("Asserting pending nonce is equal to the latest nonce");
let params = rpc_params![account_address, "latest"];
Expand Down

0 comments on commit 4d32c13

Please sign in to comment.