diff options
author | jm <jm.huang@cobinhood.com> | 2019-01-16 17:32:29 +0800 |
---|---|---|
committer | Jhih-Ming Huang <jm.huang@cobinhood.com> | 2019-03-26 17:48:21 +0800 |
commit | 1810c3af03d3da56d42f93c4521e33332156dcb6 (patch) | |
tree | 1cbcce4df7b1c5c50486c802abe4d37fb7cd70a6 /core/evm.go | |
parent | d62272c95d13fd4928e5c14794c25f671a71bd95 (diff) | |
download | dexon-1810c3af03d3da56d42f93c4521e33332156dcb6.tar dexon-1810c3af03d3da56d42f93c4521e33332156dcb6.tar.gz dexon-1810c3af03d3da56d42f93c4521e33332156dcb6.tar.bz2 dexon-1810c3af03d3da56d42f93c4521e33332156dcb6.tar.lz dexon-1810c3af03d3da56d42f93c4521e33332156dcb6.tar.xz dexon-1810c3af03d3da56d42f93c4521e33332156dcb6.tar.zst dexon-1810c3af03d3da56d42f93c4521e33332156dcb6.zip |
core: vm: extract stateDB and contract out
Extract stateDB and contract out from core/vm/evm to core/vm,
such that other vm type can use the common modules.
Diffstat (limited to 'core/evm.go')
-rw-r--r-- | core/evm.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/evm.go b/core/evm.go index 7196cad27..ae18ee9a6 100644 --- a/core/evm.go +++ b/core/evm.go @@ -23,7 +23,7 @@ import ( "github.com/dexon-foundation/dexon/consensus" "github.com/dexon-foundation/dexon/core/state" "github.com/dexon-foundation/dexon/core/types" - vm "github.com/dexon-foundation/dexon/core/vm/evm" + "github.com/dexon-foundation/dexon/core/vm" ) // ChainContext supports retrieving headers and consensus parameters from the |