From 4b2911040b6e70ad725282e496b6aeee5b41f4dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20Rosales?= Date: Fri, 17 Sep 2021 08:55:56 -0500 Subject: [PATCH] export evm::Config type directly --- chain-evm/src/machine.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chain-evm/src/machine.rs b/chain-evm/src/machine.rs index 9e251e4ff..d56fe6fe7 100644 --- a/chain-evm/src/machine.rs +++ b/chain-evm/src/machine.rs @@ -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;