diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-05-17 03:07:27 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2017-05-17 03:07:27 +0800 |
commit | a2f23ca9b181fa4409fdee3076316f3127038b9b (patch) | |
tree | 4aff39e2ad7ff31562468830b7f3435188e1672c /eth/config.go | |
parent | e20158176d2061ff95cdf022aa7113aa7c47a98e (diff) | |
download | go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar.gz go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar.bz2 go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar.lz go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar.xz go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar.zst go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.zip |
cmd, core, eth, miner: remove txpool gas price limits (#14442)
Diffstat (limited to 'eth/config.go')
-rw-r--r-- | eth/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/config.go b/eth/config.go index a09ca76f3..22c09b170 100644 --- a/eth/config.go +++ b/eth/config.go @@ -42,7 +42,7 @@ var DefaultConfig = Config{ NetworkId: 1, LightPeers: 20, DatabaseCache: 128, - GasPrice: big.NewInt(20 * params.Shannon), + GasPrice: big.NewInt(18 * params.Shannon), GPO: gasprice.Config{ Blocks: 10, |