diff options
author | bojie <bojie@dexon.org> | 2019-01-14 20:42:15 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:50:01 +0800 |
commit | 86ff3df761adde9884b39146d7c199e34e06cfbe (patch) | |
tree | ced09480da456ea4a326658a32e455d93bb1c7da /eth | |
parent | ec4a5ce9483348a16bdbf6ca06e5b6d69c7d9596 (diff) | |
download | dexon-86ff3df761adde9884b39146d7c199e34e06cfbe.tar dexon-86ff3df761adde9884b39146d7c199e34e06cfbe.tar.gz dexon-86ff3df761adde9884b39146d7c199e34e06cfbe.tar.bz2 dexon-86ff3df761adde9884b39146d7c199e34e06cfbe.tar.lz dexon-86ff3df761adde9884b39146d7c199e34e06cfbe.tar.xz dexon-86ff3df761adde9884b39146d7c199e34e06cfbe.tar.zst dexon-86ff3df761adde9884b39146d7c199e34e06cfbe.zip |
app: remove pending block logic (#149)
Diffstat (limited to 'eth')
-rw-r--r-- | eth/backend.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/backend.go b/eth/backend.go index 90cfa1a9a..f75f2e521 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -173,7 +173,7 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) { if config.TxPool.Journal != "" { config.TxPool.Journal = ctx.ResolvePath(config.TxPool.Journal) } - eth.txPool = core.NewTxPool(config.TxPool, eth.chainConfig, eth.blockchain, false) + eth.txPool = core.NewTxPool(config.TxPool, eth.chainConfig, eth.blockchain) if eth.protocolManager, err = NewProtocolManager(eth.chainConfig, config.SyncMode, config.NetworkId, eth.eventMux, eth.txPool, eth.engine, eth.blockchain, chainDb, config.Whitelist); err != nil { return nil, err |