openethereum/src/evm/mod.rs

19 lines
490 B
Rust
Raw Normal View History

2015-12-23 13:49:45 +01:00
//! Ethereum virtual machine.
2016-01-07 19:20:23 +01:00
pub mod ext;
2015-12-28 22:37:15 +01:00
pub mod evm;
2015-12-29 12:37:38 +01:00
pub mod vmfactory;
2016-01-11 15:23:27 +01:00
//pub mod logentry;
2016-01-07 19:05:44 +01:00
pub mod executive;
2016-01-09 00:51:09 +01:00
pub mod params;
2015-12-23 13:02:01 +01:00
#[cfg(feature = "jit" )]
2015-12-29 12:37:38 +01:00
mod jit;
2015-12-23 13:02:01 +01:00
2016-01-11 02:17:29 +01:00
pub use self::evm::{Evm, EvmError, EvmResult};
2016-01-09 00:51:09 +01:00
pub use self::ext::{Ext};
2016-01-11 15:23:27 +01:00
//pub use self::logentry::LogEntry;
2016-01-07 23:33:54 +01:00
pub use self::vmfactory::VmFactory;
// TODO: reduce this to absolutely necessary things
pub use self::executive::{Executive, ExecutionResult, Externalities, Substate, OutputPolicy};
2016-01-09 17:55:47 +01:00
pub use self::params::EvmParams;