We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f30260 commit 9e1cb1aCopy full SHA for 9e1cb1a
src/txmempool.h
@@ -704,7 +704,7 @@ class CTxMemPool
704
/** Adds a transaction to the unbroadcast set */
705
void AddUnbroadcastTx(const uint256& txid) {
706
LOCK(cs);
707
- /** Sanity Check: the transaction should also be in the mempool */
+ // Sanity Check: the transaction should also be in the mempool
708
if (exists(txid)) {
709
m_unbroadcast_txids.insert(txid);
710
}
@@ -719,7 +719,7 @@ class CTxMemPool
719
return m_unbroadcast_txids;
720
721
722
- // Returns if a txid is in the unbroadcast set
+ /** Returns whether a txid is in the unbroadcast set */
723
bool IsUnbroadcastTx(const uint256& txid) const {
724
725
return (m_unbroadcast_txids.count(txid) != 0);
0 commit comments