diff options
author | Sonic <sonic@cobinhood.com> | 2018-09-25 15:47:35 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:21:31 +0800 |
commit | ad73ab6d3d090cfeb959cf72f716083763a37616 (patch) | |
tree | 2e6430f7e0f0937129e2abb0998ee4b2c206d747 /dex | |
parent | bd3f617267be4b6879285d1ebf97eceb501e3bea (diff) | |
download | go-tangerine-ad73ab6d3d090cfeb959cf72f716083763a37616.tar go-tangerine-ad73ab6d3d090cfeb959cf72f716083763a37616.tar.gz go-tangerine-ad73ab6d3d090cfeb959cf72f716083763a37616.tar.bz2 go-tangerine-ad73ab6d3d090cfeb959cf72f716083763a37616.tar.lz go-tangerine-ad73ab6d3d090cfeb959cf72f716083763a37616.tar.xz go-tangerine-ad73ab6d3d090cfeb959cf72f716083763a37616.tar.zst go-tangerine-ad73ab6d3d090cfeb959cf72f716083763a37616.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" |