From d3b485a5af768db59bd648175849f961e25bc630 Mon Sep 17 00:00:00 2001 From: jm Date: Wed, 16 Jan 2019 17:32:29 +0800 Subject: 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. --- core/evm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/evm.go') diff --git a/core/evm.go b/core/evm.go index 83a789131..a2b61c535 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 -- cgit v1.2.3