diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-14 15:34:45 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:53 +0800 |
commit | 426fdd07f71aea7de2fe8ca010f17afaf774c047 (patch) | |
tree | aca084fa9b6ddc96e337c66074586e403a734a6a /dex/config.go | |
parent | 872a05bada57df6ef8b17f7791e584b860dd5bdc (diff) | |
download | dexon-426fdd07f71aea7de2fe8ca010f17afaf774c047.tar.gz dexon-426fdd07f71aea7de2fe8ca010f17afaf774c047.tar.zst dexon-426fdd07f71aea7de2fe8ca010f17afaf774c047.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/config.go')
-rw-r--r-- | dex/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dex/config.go b/dex/config.go index e74425ea3..cd9d1b1db 100644 --- a/dex/config.go +++ b/dex/config.go @@ -26,8 +26,8 @@ import ( "time" "github.com/dexon-foundation/dexon/core" - "github.com/dexon-foundation/dexon/dex/gasprice" "github.com/dexon-foundation/dexon/eth/downloader" + "github.com/dexon-foundation/dexon/eth/gasprice" "github.com/dexon-foundation/dexon/params" ) |