diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-19 18:52:38 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:23:39 +0800 |
commit | 0e12c9284efdf72a376f75f180bac7968d6fb382 (patch) | |
tree | 1b06f8f9483bff246dbeba12c7445780a595b21a /dex/config.go | |
parent | 93563f41410b964454f23229cfabe1ec1ba735f5 (diff) | |
download | go-tangerine-0e12c9284efdf72a376f75f180bac7968d6fb382.tar go-tangerine-0e12c9284efdf72a376f75f180bac7968d6fb382.tar.gz go-tangerine-0e12c9284efdf72a376f75f180bac7968d6fb382.tar.bz2 go-tangerine-0e12c9284efdf72a376f75f180bac7968d6fb382.tar.lz go-tangerine-0e12c9284efdf72a376f75f180bac7968d6fb382.tar.xz go-tangerine-0e12c9284efdf72a376f75f180bac7968d6fb382.tar.zst go-tangerine-0e12c9284efdf72a376f75f180bac7968d6fb382.zip |
consensus: dexcon: fetch config from state
Diffstat (limited to 'dex/config.go')
-rw-r--r-- | dex/config.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/dex/config.go b/dex/config.go index a3b682de0..5eff28022 100644 --- a/dex/config.go +++ b/dex/config.go @@ -25,7 +25,6 @@ import ( "runtime" "time" - "github.com/dexon-foundation/dexon/consensus/dexcon" "github.com/dexon-foundation/dexon/core" "github.com/dexon-foundation/dexon/dex/gasprice" "github.com/dexon-foundation/dexon/eth/downloader" @@ -35,7 +34,6 @@ import ( // DefaultConfig contains default settings for use on the Ethereum main net. var DefaultConfig = Config{ SyncMode: downloader.FastSync, - Dexcon: dexcon.Config{}, NetworkId: 1, LightPeers: 100, DatabaseCache: 768, @@ -102,9 +100,6 @@ type Config struct { GasCeil uint64 GasLimitTolerance uint64 - // Dexcon options - Dexcon dexcon.Config - // Transaction pool options TxPool core.TxPoolConfig |