core: don't uselessly recheck transactions on dump

parent 067dc2cb
...@@ -339,17 +339,6 @@ func (pool *TxPool) Pending() (map[common.Address]types.Transactions, error) { ...@@ -339,17 +339,6 @@ func (pool *TxPool) Pending() (map[common.Address]types.Transactions, error) {
pool.mu.Lock() pool.mu.Lock()
defer pool.mu.Unlock() defer pool.mu.Unlock()
state, err := pool.currentState()
if err != nil {
return nil, err
}
// check queue first
pool.promoteExecutables(state)
// invalidate any txs
pool.demoteUnexecutables(state)
pending := make(map[common.Address]types.Transactions) pending := make(map[common.Address]types.Transactions)
for addr, list := range pool.pending { for addr, list := range pool.pending {
pending[addr] = list.Flatten() pending[addr] = list.Flatten()
...@@ -551,12 +540,12 @@ func (pool *TxPool) Add(tx *types.Transaction) error { ...@@ -551,12 +540,12 @@ func (pool *TxPool) Add(tx *types.Transaction) error {
if err != nil { if err != nil {
return err return err
} }
// If we added a new transaction, run promotion checks and return
if !replace {
state, err := pool.currentState() state, err := pool.currentState()
if err != nil { if err != nil {
return err return err
} }
// If we added a new transaction, run promotion checks and return
if !replace {
pool.promoteExecutables(state) pool.promoteExecutables(state)
} }
return nil return nil
...@@ -579,11 +568,11 @@ func (pool *TxPool) AddBatch(txs []*types.Transaction) error { ...@@ -579,11 +568,11 @@ func (pool *TxPool) AddBatch(txs []*types.Transaction) error {
} }
// Only reprocess the internal state if something was actually added // Only reprocess the internal state if something was actually added
if added > 0 { if added > 0 {
if !replaced {
state, err := pool.currentState() state, err := pool.currentState()
if err != nil { if err != nil {
return err return err
} }
if !replaced {
pool.promoteExecutables(state) pool.promoteExecutables(state)
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment