From ed383c08508619930fb641ff84dd21be31618199 Mon Sep 17 00:00:00 2001 From: Stanislav Breadless Date: Sun, 17 Nov 2024 17:54:09 +0100 Subject: [PATCH] upd --- core/node/genesis/src/lib.rs | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/core/node/genesis/src/lib.rs b/core/node/genesis/src/lib.rs index 1c10c8a0b08..1de432036fa 100644 --- a/core/node/genesis/src/lib.rs +++ b/core/node/genesis/src/lib.rs @@ -13,9 +13,7 @@ use zksync_contracts::{ use zksync_dal::{Connection, Core, CoreDal, DalError}; use zksync_eth_client::{CallFunctionArgs, EthInterface}; use zksync_merkle_tree::{domain::ZkSyncTree, TreeInstruction}; -use zksync_multivm::{ - circuit_sequencer_api_latest::boojum::pairing::hex, utils::get_max_gas_per_pubdata_byte, -}; +use zksync_multivm::utils::get_max_gas_per_pubdata_byte; use zksync_system_constants::PRIORITY_EXPIRATION; use zksync_types::{ block::{BlockGasCount, DeployedContract, L1BatchHeader, L2BlockHasher, L2BlockHeader}, @@ -221,14 +219,6 @@ pub async fn insert_genesis_batch( .await?; tracing::info!("chain_schema_genesis is complete"); - for contract in genesis_params.system_contracts() { - println!( - "contract {}: {}", - hex::encode(contract.account_id.address()), - hex::encode(hash_bytecode(&contract.bytecode)) - ); - } - let deduped_log_queries = get_deduped_log_queries(&get_storage_logs(genesis_params.system_contracts()));