diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-05-29 16:42:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-29 16:42:48 +0800 |
commit | dd06c8584368316c8fb388384b0723d8c7e543f0 (patch) | |
tree | 6b0daa3ff79df3bf6405237dbee4cbceacb0c4d0 /eth/config.go | |
parent | ae40d51410f6fa958d08cd34f9e8586edb88fdf1 (diff) | |
parent | 08959bbc70ade02109c819fdee72be1ed9310726 (diff) | |
download | dexon-dd06c8584368316c8fb388384b0723d8c7e543f0.tar dexon-dd06c8584368316c8fb388384b0723d8c7e543f0.tar.gz dexon-dd06c8584368316c8fb388384b0723d8c7e543f0.tar.bz2 dexon-dd06c8584368316c8fb388384b0723d8c7e543f0.tar.lz dexon-dd06c8584368316c8fb388384b0723d8c7e543f0.tar.xz dexon-dd06c8584368316c8fb388384b0723d8c7e543f0.tar.zst dexon-dd06c8584368316c8fb388384b0723d8c7e543f0.zip |
Merge pull request #14523 from karalabe/txpool-cli-flags
cmd, core, eth: configurable txpool parameters
Diffstat (limited to 'eth/config.go')
-rw-r--r-- | eth/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/eth/config.go b/eth/config.go index 22c09b170..4109cff8b 100644 --- a/eth/config.go +++ b/eth/config.go @@ -44,6 +44,7 @@ var DefaultConfig = Config{ DatabaseCache: 128, GasPrice: big.NewInt(18 * params.Shannon), + TxPool: core.DefaultTxPoolConfig, GPO: gasprice.Config{ Blocks: 10, Percentile: 50, @@ -99,6 +100,9 @@ type Config struct { EthashDatasetsInMem int EthashDatasetsOnDisk int + // Transaction pool options + TxPool core.TxPoolConfig + // Gas Price Oracle options GPO gasprice.Config |