1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! # EVM executors
//!
//! Executors are structs that hook gasometer and the EVM core together. It
//! also handles the call stacks in EVM.

mod stack;

pub use self::stack::{
	MemoryStackState, PrecompileOutput, StackExecutor, StackExitKind, StackState,
	StackSubstateMetadata,
};