Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed Jan 18, 2024
1 parent 4af24bf commit 23cd276
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions core/lib/zksync_core/src/api_server/web3/namespaces/debug.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@ use std::sync::Arc;

use multivm::{interface::ExecutionResult, vm_latest::constants::BLOCK_GAS_LIMIT};
use once_cell::sync::OnceCell;
use zksync_dal::ConnectionPool;
use zksync_state::PostgresStorageCaches;
use zksync_system_constants::MAX_ENCODED_TX_SIZE;
use zksync_types::{
api::{BlockId, BlockNumber, DebugCall, ResultDebugCall, TracerConfig},
fee_model::BatchFeeInput,
l2::L2Tx,
transaction_request::CallRequest,
vm_trace::Call,
AccountTreeId, L2ChainId, H256,
AccountTreeId, H256,
};
use zksync_web3_decl::error::Web3Error;

Expand Down
2 changes: 1 addition & 1 deletion core/lib/zksync_core/src/api_server/web3/tests/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ impl SendRawTransactionTest {
to: Some(Address::repeat_byte(2)),
value: 123_456.into(),
gas: (get_intrinsic_constants().l2_tx_intrinsic_gas * 2).into(),
gas_price: StateKeeperConfig::for_tests().fair_l2_gas_price.into(),
gas_price: StateKeeperConfig::for_tests().minimal_l2_gas_price.into(),
input: vec![1, 2, 3, 4].into(),
..api::TransactionRequest::default()
};
Expand Down

0 comments on commit 23cd276

Please sign in to comment.