Skip to content

Commit c17f554

Browse files
committed
Fix BlockAssembler::AddToBlock, CTxMemPool::PrioritiseTransaction logging
1 parent 7f7bd31 commit c17f554

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/miner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ void BlockAssembler::AddToBlock(CTxMemPool::txiter iter)
237237

238238
bool fPrintPriority = gArgs.GetBoolArg("-printpriority", DEFAULT_PRINTPRIORITY);
239239
if (fPrintPriority) {
240-
LogPrintf("fee %s txid %s\n",
240+
LogPrintf("fee rate %s txid %s\n",
241241
CFeeRate(iter->GetModifiedFee(), iter->GetTxSize()).ToString(),
242242
iter->GetTx().GetHash().ToString());
243243
}

src/txmempool.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,7 @@ void CTxMemPool::PrioritiseTransaction(const uint256& hash, const CAmount& nFeeD
924924
++nTransactionsUpdated;
925925
}
926926
}
927-
LogPrintf("PrioritiseTransaction: %s feerate += %s\n", hash.ToString(), FormatMoney(nFeeDelta));
927+
LogPrintf("PrioritiseTransaction: %s fee += %s\n", hash.ToString(), FormatMoney(nFeeDelta));
928928
}
929929

930930
void CTxMemPool::ApplyDelta(const uint256& hash, CAmount &nFeeDelta) const

0 commit comments

Comments
 (0)