Merge pull request #861 from obscuren/transaction_pool_fixes

core: transaction pool fixes & resending transactions
This commit is contained in:
Jeffrey Wilcke
2015-05-06 11:23:58 -07:00
8 changed files with 133 additions and 7 deletions

View File

@ -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())
}
}