Branch: refs/heads/master
Home: https://github.com/btcsuite/btcd
Commit: d765c73a419087c637ba03ff79d8d2f21040d70a
https://github.com/btcsuite/btcd/commit/d765c73a419087c637ba03ff79d8d2f21040d70a
Author: David Hill <[email protected]>
Date: 2015-11-10 (Tue, 10 Nov 2015)
Changed paths:
M mempool.go
Log Message:
-----------
mempool: Remove returned error from ProcessOrphans
ProcessTransaction could have accepted a new transaction into mempool
but could have returned a reject message if a no-longer-orphan
transaction failed to be accepted. This would also skip any
additional no-longer-orphans, keeping them in the orphan pool.
Instead of returning an error incorrectly, log the error and skip
the no-longer-orphan transaction. This allows the rest of the
no-longer-orphans to be processed as well.