casper-execution-engine 9.0.0

Casper execution engine crates.
1
2
3
4
5
6
7
//! Code execution.
mod error;
#[macro_use]
mod executor;

pub use self::error::Error as ExecError;
pub(crate) use self::executor::Executor;