Skip to content

Commit

Permalink
export evm::Config type directly
Browse files Browse the repository at this point in the history
  • Loading branch information
saibatizoku committed Oct 12, 2021
1 parent f4d4cce commit 4b29110
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chain-evm/src/machine.rs
Expand Up @@ -14,14 +14,14 @@ use std::rc::Rc;
use evm::{
backend::{Apply, ApplyBackend, Backend, Basic, Log, MemoryVicinity},
executor::{MemoryStackState, StackExecutor, StackSubstateMetadata},
Config as EvmConfig, Context, Runtime,
Context, Runtime,
};
use primitive_types::{H160, H256, U256};

use crate::state::AccountTrie;

/// EVM Configuration.
pub type Config = EvmConfig;
pub use evm::Config;

/// Gas quantity integer for EVM operations.
pub type Gas = U256;
Expand Down

0 comments on commit 4b29110

Please sign in to comment.