aboutsummaryrefslogtreecommitdiffstats
path: root/dex/config.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-15 13:29:48 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:54 +0800
commit2ea3e5bc1881de55b6c4a9fe77d735257536d068 (patch)
tree3f92a1ffb0e8df36c8a6e826ad7818c46c045f4e /dex/config.go
parent744cee6920b52f55ba35c1b41ad9aea63afd728f (diff)
downloaddexon-2ea3e5bc1881de55b6c4a9fe77d735257536d068.tar
dexon-2ea3e5bc1881de55b6c4a9fe77d735257536d068.tar.gz
dexon-2ea3e5bc1881de55b6c4a9fe77d735257536d068.tar.bz2
dexon-2ea3e5bc1881de55b6c4a9fe77d735257536d068.tar.lz
dexon-2ea3e5bc1881de55b6c4a9fe77d735257536d068.tar.xz
dexon-2ea3e5bc1881de55b6c4a9fe77d735257536d068.tar.zst
dexon-2ea3e5bc1881de55b6c4a9fe77d735257536d068.zip
core: fix tests
Diffstat (limited to 'dex/config.go')
-rw-r--r--dex/config.go8
1 files changed, 1 insertions, 7 deletions
diff --git a/dex/config.go b/dex/config.go
index b6ce76992..924e18d53 100644
--- a/dex/config.go
+++ b/dex/config.go
@@ -48,9 +48,6 @@ var DefaultConfig = Config{
},
BlockProposerEnabled: false,
DefaultGasPrice: big.NewInt(params.GWei),
- GasFloor: 80000000,
- GasCeil: 80000000,
- GasLimitTolerance: 1000000,
}
func init() {
@@ -96,10 +93,7 @@ type Config struct {
TrieTimeout time.Duration
// For calculate gas limit
- DefaultGasPrice *big.Int
- GasFloor uint64
- GasCeil uint64
- GasLimitTolerance uint64
+ DefaultGasPrice *big.Int
// Transaction pool options
TxPool core.TxPoolConfig