chore(execution-engine): this removes useless InvalidCanonStreamInData error (#529)

This commit is contained in:
raftedproc 2023-03-17 17:15:28 +03:00 committed by GitHub
parent 6db35dbd93
commit 548e458f1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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),