Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
bzawisto committed Jan 11, 2025
1 parent 8706408 commit c58b2c9
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions zilliqa/tests/it/eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use ethabi::{ethereum_types::U64, Token};
use ethers::{
abi::FunctionExt,
core::types::{Bytes, Signature},
prelude::contract,
providers::{Middleware, MiddlewareError, Provider},
types::{
transaction::{
Expand All @@ -21,12 +20,9 @@ use ethers::{
use futures::{future::join_all, StreamExt};
use primitive_types::{H160, H256};
use serde::{Deserialize, Serialize};
use zilliqa::{
scilla::storage_key,
state::{Account, State},
};
use zilliqa::state::{Account, State};

use crate::{deploy_contract, node, LocalRpcClient, Network, Wallet};
use crate::{deploy_contract, LocalRpcClient, Network, Wallet};

#[zilliqa_macros::test]
async fn call_block_number(mut network: Network) {
Expand Down Expand Up @@ -1485,7 +1481,7 @@ async fn test_eth_get_proof(mut network: Network) {
let wallet = network.genesis_wallet().await;

// Example from https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getstorageat.
let (hash, abi) = deploy_contract(
let (hash, _) = deploy_contract(
"tests/it/contracts/Storage.sol",
"Storage",
&wallet,
Expand Down

0 comments on commit c58b2c9

Please sign in to comment.