mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-25 22:41:36 +02:00
tx pool: Use the entry's hash instead of the one passed to addUnchecked
This commit is contained in:
@@ -364,7 +364,7 @@ void CTxMemPool::addUnchecked(const uint256& hash, const CTxMemPoolEntry &entry,
|
|||||||
// Update transaction for any feeDelta created by PrioritiseTransaction
|
// Update transaction for any feeDelta created by PrioritiseTransaction
|
||||||
// TODO: refactor so that the fee delta is calculated before inserting
|
// TODO: refactor so that the fee delta is calculated before inserting
|
||||||
// into mapTx.
|
// into mapTx.
|
||||||
std::map<uint256, CAmount>::const_iterator pos = mapDeltas.find(hash);
|
std::map<uint256, CAmount>::const_iterator pos = mapDeltas.find(entry.GetTx().GetHash());
|
||||||
if (pos != mapDeltas.end()) {
|
if (pos != mapDeltas.end()) {
|
||||||
const CAmount &delta = pos->second;
|
const CAmount &delta = pos->second;
|
||||||
if (delta) {
|
if (delta) {
|
||||||
|
Reference in New Issue
Block a user