diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-14 15:34:45 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:18 +0800 |
commit | 281bf328e19274e21416ecbbc5c01f6243c1ad6f (patch) | |
tree | e7a0582667f204eb69c3b46900c4eea3f912ec1d /dex/backend.go | |
parent | 6e314a141774a54710e797720319ab92ceeff93b (diff) | |
download | go-tangerine-281bf328e19274e21416ecbbc5c01f6243c1ad6f.tar go-tangerine-281bf328e19274e21416ecbbc5c01f6243c1ad6f.tar.gz go-tangerine-281bf328e19274e21416ecbbc5c01f6243c1ad6f.tar.bz2 go-tangerine-281bf328e19274e21416ecbbc5c01f6243c1ad6f.tar.lz go-tangerine-281bf328e19274e21416ecbbc5c01f6243c1ad6f.tar.xz go-tangerine-281bf328e19274e21416ecbbc5c01f6243c1ad6f.tar.zst go-tangerine-281bf328e19274e21416ecbbc5c01f6243c1ad6f.zip |
dex: remove gasprice package and use eth/gasprice instead
We did not change anything in eth/gasprice, don't copy it into dex.
Diffstat (limited to 'dex/backend.go')
-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 3b727adde..d7bc4630e 100644 --- a/dex/backend.go +++ b/dex/backend.go @@ -34,9 +34,9 @@ import ( "github.com/dexon-foundation/dexon/core/bloombits" "github.com/dexon-foundation/dexon/core/rawdb" "github.com/dexon-foundation/dexon/core/vm" - "github.com/dexon-foundation/dexon/dex/gasprice" "github.com/dexon-foundation/dexon/eth/downloader" "github.com/dexon-foundation/dexon/eth/filters" + "github.com/dexon-foundation/dexon/eth/gasprice" "github.com/dexon-foundation/dexon/ethdb" "github.com/dexon-foundation/dexon/event" "github.com/dexon-foundation/dexon/internal/ethapi" |