From 1cccbc040eb5b82ae9d40a3acb33e8be339e93c9 Mon Sep 17 00:00:00 2001 From: Dream Wu Date: Thu, 19 Sep 2024 14:50:28 +0800 Subject: [PATCH] fix clippy --- zkevm-circuits/src/evm_circuit/execution/begin_tx.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/zkevm-circuits/src/evm_circuit/execution/begin_tx.rs b/zkevm-circuits/src/evm_circuit/execution/begin_tx.rs index c4228fd996..be786f8da2 100644 --- a/zkevm-circuits/src/evm_circuit/execution/begin_tx.rs +++ b/zkevm-circuits/src/evm_circuit/execution/begin_tx.rs @@ -1254,10 +1254,9 @@ mod test { use std::{str::FromStr, vec}; use crate::{evm_circuit::test::rand_bytes, test_util::CircuitTestBuilder}; - use bus_mapping::{circuit_input_builder::CircuitsParams, evm::OpcodeId}; + use bus_mapping::evm::OpcodeId; use eth_types::{ - self, address, bytecode, evm_types::GasCost, word, Address, Bytecode, Error, Hash, Word, - U256, + self, address, bytecode, evm_types::GasCost, word, Address, Bytecode, Hash, Word, U256, }; use ethers_core::{types::Bytes, utils::get_contract_address}; use mock::{eth, gwei, MockTransaction, TestContext, MOCK_ACCOUNTS};