chore(execution-engine): this commit adds a set of trace-related negative tests for UncatchableError [fixes VM-263] (#532)

chore(execution-engine): this commit adds a set of trace-related
negative tests for UncatchableError [fixes VM-263]
This commit is contained in:
raftedproc
2023-03-21 00:31:36 +03:00
committed by GitHub
parent a2ad3b15db
commit 631abd4ec4
5 changed files with 455 additions and 26 deletions

View File

@ -32,9 +32,13 @@ mod handler;
pub mod merger;
mod state_automata;
pub use data_keeper::KeeperError;
pub use errors::GenerationCompatificationError;
pub use errors::TraceHandlerError;
pub use handler::TraceHandler;
pub use merger::DataType;
pub use merger::MergeError;
pub use state_automata::StateFSMError;
pub use state_automata::SubgraphType;
pub type TraceHandlerResult<T> = std::result::Result<T, TraceHandlerError>;