From 548e458f1c3de9ca9fd1f5ed8f7e6ac45459c499 Mon Sep 17 00:00:00 2001 From: raftedproc <71657594+raftedproc@users.noreply.github.com> Date: Fri, 17 Mar 2023 17:15:28 +0300 Subject: [PATCH] chore(execution-engine): this removes useless `InvalidCanonStreamInData` error (#529) --- air/src/execution_step/errors/uncatchable_errors.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/air/src/execution_step/errors/uncatchable_errors.rs b/air/src/execution_step/errors/uncatchable_errors.rs index 2a6f16b8..b44c10d6 100644 --- a/air/src/execution_step/errors/uncatchable_errors.rs +++ b/air/src/execution_step/errors/uncatchable_errors.rs @@ -16,7 +16,6 @@ use super::Stream; use crate::execution_step::Generation; -use crate::JValue; use crate::ToErrorCode; use air_interpreter_cid::CidCalculationError; @@ -76,12 +75,6 @@ pub enum UncatchableError { #[error("new end block tries to pop up a variable '{scalar_name}' that wasn't defined at depth {depth}")] ScalarsStateCorrupted { scalar_name: String, depth: usize }, - #[error("can't deserialize stream {canonicalized_stream:?} with error: {de_error}")] - InvalidCanonStreamInData { - canonicalized_stream: JValue, - de_error: serde_json::Error, - }, - #[error("failed to calculate value's CID")] CidError(#[from] CidCalculationError),