diff options
author | Sonic <sonic@cobinhood.com> | 2018-09-25 15:47:35 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 18:45:25 +0800 |
commit | da57d63fac0679e343a068dd3fc1d7702ca78ea4 (patch) | |
tree | e107d56786585f56edcbe029b336eec3e27e6e63 /dex | |
parent | 07d7940e75cc73d026099a3a316a1b61886effd1 (diff) | |
download | dexon-da57d63fac0679e343a068dd3fc1d7702ca78ea4.tar dexon-da57d63fac0679e343a068dd3fc1d7702ca78ea4.tar.gz dexon-da57d63fac0679e343a068dd3fc1d7702ca78ea4.tar.bz2 dexon-da57d63fac0679e343a068dd3fc1d7702ca78ea4.tar.lz dexon-da57d63fac0679e343a068dd3fc1d7702ca78ea4.tar.xz dexon-da57d63fac0679e343a068dd3fc1d7702ca78ea4.tar.zst dexon-da57d63fac0679e343a068dd3fc1d7702ca78ea4.zip |
dex: fix use of internal package not allowed
Diffstat (limited to 'dex')
-rw-r--r-- | dex/backend.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dex/backend.go b/dex/backend.go index e374bb70f..c313f590b 100644 --- a/dex/backend.go +++ b/dex/backend.go @@ -25,6 +25,7 @@ import ( "github.com/dexon-foundation/dexon-consensus-core/core/blockdb" ethCrypto "github.com/dexon-foundation/dexon-consensus-core/crypto/eth" + "github.com/dexon-foundation/dexon/internal/ethapi" "github.com/ethereum/go-ethereum/accounts" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/consensus" @@ -33,7 +34,6 @@ import ( "github.com/ethereum/go-ethereum/eth" "github.com/ethereum/go-ethereum/ethdb" "github.com/ethereum/go-ethereum/event" - "github.com/ethereum/go-ethereum/internal/ethapi" "github.com/ethereum/go-ethereum/node" "github.com/ethereum/go-ethereum/p2p" "github.com/ethereum/go-ethereum/params" |