diff options
author | Jhih-Ming Huang <jm.huang@cobinhood.com> | 2019-03-08 20:25:54 +0800 |
---|---|---|
committer | Jhih-Ming Huang <jm.huang@cobinhood.com> | 2019-03-26 17:48:22 +0800 |
commit | 74c57f8f3d9e417636a0759055669f47728a799f (patch) | |
tree | 8b47c75ad045ed04f9e5bcfa3cfcc29a6072d285 /dex/app_test.go | |
parent | 422626ae1dc0e46c6a209d90b0c895c9d4e4957d (diff) | |
download | dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar.gz dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar.bz2 dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar.lz dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar.xz dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar.zst dexon-74c57f8f3d9e417636a0759055669f47728a799f.zip |
remove dexon/crypto/sha3 pkg.
Diffstat (limited to 'dex/app_test.go')
-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() |