From 0b3c054f9f67abdb0932d7de601b7fca8f53688a Mon Sep 17 00:00:00 2001 From: Alexandru Sardan Date: Mon, 30 Oct 2023 14:50:16 +0000 Subject: [PATCH] operations: fix lint errors Signed-off-by: Alexandru Sardan --- node/src/components/contract_runtime/operations.rs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/node/src/components/contract_runtime/operations.rs b/node/src/components/contract_runtime/operations.rs index e2a8e9cfbb..a2c783f921 100644 --- a/node/src/components/contract_runtime/operations.rs +++ b/node/src/components/contract_runtime/operations.rs @@ -25,13 +25,10 @@ use casper_types::{ }; use crate::{ - components::{ - contract_runtime::{ - error::BlockExecutionError, types::StepEffectsAndUpcomingEraValidators, - BlockAndExecutionResults, ExecutionPreState, Metrics, PackageKindTag, - SpeculativeExecutionState, APPROVALS_CHECKSUM_NAME, EXECUTION_RESULTS_CHECKSUM_NAME, - }, - fetcher::FetchItem, + components::contract_runtime::{ + error::BlockExecutionError, types::StepEffectsAndUpcomingEraValidators, + BlockAndExecutionResults, ExecutionPreState, Metrics, PackageKindTag, + SpeculativeExecutionState, APPROVALS_CHECKSUM_NAME, EXECUTION_RESULTS_CHECKSUM_NAME, }, types::{self, ApprovalsHashes, Chunkable, ExecutableBlock, InternalEraReport}, utils::fetch_id,