Move the substate module into ethcore/executive (#10867)

* substate is not a part of account-state

* fn cleanup_mode is a part of executive.rs

* test_cleanup_mode
This commit is contained in:
Marek Kotewicz
2019-07-10 10:55:37 +02:00
committed by Andronik Ordian
parent f53c3e582c
commit 34cdeac2a6
17 changed files with 67 additions and 43 deletions

View File

@@ -21,7 +21,7 @@ use hash::keccak;
use vm::{EnvInfo, ActionParams, ActionValue, CallType, ParamsType};
use evm::{Factory, VMType};
use executive::Executive;
use account_state::Substate;
use substate::Substate;
use test_helpers::get_temp_state_with_factory;
use trace::{NoopVMTracer, NoopTracer};
use types::transaction::SYSTEM_ADDRESS;