diff options
Diffstat (limited to 'dex')
-rw-r--r-- | dex/app_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dex/app_test.go b/dex/app_test.go index e648abdbd..5b346358f 100644 --- a/dex/app_test.go +++ b/dex/app_test.go @@ -20,7 +20,7 @@ import ( "github.com/dexon-foundation/dexon/core" "github.com/dexon-foundation/dexon/core/rawdb" "github.com/dexon-foundation/dexon/core/types" - "github.com/dexon-foundation/dexon/core/vm" + "github.com/dexon-foundation/dexon/core/vm/evm" "github.com/dexon-foundation/dexon/crypto" "github.com/dexon-foundation/dexon/ethdb" "github.com/dexon-foundation/dexon/event" @@ -2329,7 +2329,7 @@ func newDexon(masterKey *ecdsa.PrivateKey, accountNum int) (*Dexon, []*ecdsa.Pri } config := Config{PrivateKey: masterKey} - vmConfig := vm.Config{IsBlockProposer: true} + vmConfig := evm.Config{IsBlockProposer: true} engine := dexcon.New() |