aboutsummaryrefslogtreecommitdiffstats
path: root/dex/app_test.go
diff options
context:
space:
mode:
authorJhih-Ming Huang <jm.huang@cobinhood.com>2019-03-08 20:25:54 +0800
committerJhih-Ming Huang <jm.huang@cobinhood.com>2019-05-06 10:44:04 +0800
commit9faecc847b803e248a5b4d3d256a90b6c55fd26f (patch)
tree844e157a038037f957d33bd739eefb3405d02acf /dex/app_test.go
parentba3337841485beb022d75e9182b380a192c420e2 (diff)
downloaddexon-9faecc847b803e248a5b4d3d256a90b6c55fd26f.tar
dexon-9faecc847b803e248a5b4d3d256a90b6c55fd26f.tar.gz
dexon-9faecc847b803e248a5b4d3d256a90b6c55fd26f.tar.bz2
dexon-9faecc847b803e248a5b4d3d256a90b6c55fd26f.tar.lz
dexon-9faecc847b803e248a5b4d3d256a90b6c55fd26f.tar.xz
dexon-9faecc847b803e248a5b4d3d256a90b6c55fd26f.tar.zst
dexon-9faecc847b803e248a5b4d3d256a90b6c55fd26f.zip
remove dexon/crypto/sha3 pkg.
Diffstat (limited to 'dex/app_test.go')
-rw-r--r--dex/app_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/dex/app_test.go b/dex/app_test.go
index a62d9001f..e4a46b116 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"
@@ -2326,7 +2326,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()