diff options
author | bojie <bojie@dexon.org> | 2018-12-12 22:27:19 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 5d8800ff15319f0588b37959385a6e235cffd72e (patch) | |
tree | b3e20a260c71c998e7c50f8d31e45186f046ce1c | |
parent | e3a41c73b9d5ae34637c4d17a273b8a6544c1142 (diff) | |
download | dexon-5d8800ff15319f0588b37959385a6e235cffd72e.tar.gz dexon-5d8800ff15319f0588b37959385a6e235cffd72e.tar.zst dexon-5d8800ff15319f0588b37959385a6e235cffd72e.zip |
cache: prune cache correctly (#88)
-rw-r--r-- | core/tx_pool.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/tx_pool.go b/core/tx_pool.go index 1d69ea506..ea2025cde 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -927,6 +927,7 @@ func (pool *TxPool) Get(hash common.Hash) *types.Transaction { // removeTx removes a single transaction from the queue, moving all subsequent // transactions back to the future queue. func (pool *TxPool) removeTx(hash common.Hash, outofbound bool) { + types.GlobalSigCache.Prune([]common.Hash{hash}) // Fetch the transaction we wish to delete tx := pool.all.Get(hash) if tx == nil { @@ -965,8 +966,6 @@ func (pool *TxPool) removeTx(hash common.Hash, outofbound bool) { delete(pool.queue, addr) } } - - types.GlobalSigCache.Prune([]common.Hash{hash}) } // promoteExecutables moves transactions that have become processable from the |