diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-07 02:23:58 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-07 02:23:58 +0800 |
commit | 323216ed85b48abec07266a203b731e7491d4286 (patch) | |
tree | e9ac9734d08effe53094f6cb00ff306dc51ffe73 /core | |
parent | 1f26a1b86319f9468395e0772b5ae8f02cce8ec8 (diff) | |
parent | 05ac1209c731722a486fb54d3b5cc9282c760c81 (diff) | |
download | go-tangerine-323216ed85b48abec07266a203b731e7491d4286.tar.gz go-tangerine-323216ed85b48abec07266a203b731e7491d4286.tar.zst go-tangerine-323216ed85b48abec07266a203b731e7491d4286.zip |
Merge pull request #861 from obscuren/transaction_pool_fixes
core: transaction pool fixes & resending transactions
Diffstat (limited to 'core')
-rw-r--r-- | core/transaction_pool.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/transaction_pool.go b/core/transaction_pool.go index 22a804e1d..bac6b7f0b 100644 --- a/core/transaction_pool.go +++ b/core/transaction_pool.go @@ -235,7 +235,7 @@ func (self *TxPool) RemoveTransactions(txs types.Transactions) { defer self.mu.Unlock() for _, tx := range txs { - delete(self.txs, tx.Hash()) + self.removeTx(tx.Hash()) } } |