aboutsummaryrefslogtreecommitdiff
path: root/src/policy/rbf.h
diff options
context:
space:
mode:
authorglozow <gloriajzhao@gmail.com>2021-09-01 09:54:04 +0100
committerglozow <gloriajzhao@gmail.com>2021-09-02 16:23:27 +0100
commit32748da0f47f7aa9fba78dfb29aa426b14f15624 (patch)
treef85c91c89edce3d1176ffb0a6665377b610f2053 /src/policy/rbf.h
parentfa47622e8dc66bec9ea690aec3f0999108d76dc9 (diff)
downloadbitcoin-32748da0f47f7aa9fba78dfb29aa426b14f15624.tar.xz
whitespace fixups after move and scripted-diff
Diffstat (limited to 'src/policy/rbf.h')
-rw-r--r--src/policy/rbf.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/policy/rbf.h b/src/policy/rbf.h
index 55baae0fa2..56468a09b2 100644
--- a/src/policy/rbf.h
+++ b/src/policy/rbf.h
@@ -39,8 +39,8 @@ RBFTransactionState IsRBFOptInEmptyMempool(const CTransaction& tx);
* transactions to be replaced and their descendant transactions which will be evicted from the
* mempool must not exceed a total of 100 transactions." Quit as early as possible. There cannot be
* more than MAX_BIP125_REPLACEMENT_CANDIDATES potential entries.
- * @param[in] iters_conflicting The set of iterators to mempool entries.
- * @param[out] all_conflicts Populated with all the mempool entries that would be replaced,
+ * @param[in] iters_conflicting The set of iterators to mempool entries.
+ * @param[out] all_conflicts Populated with all the mempool entries that would be replaced,
* which includes descendants of iters_conflicting. Not cleared at
* the start; any existing mempool entries will remain in the set.
* @returns an error message if Rule #5 is broken, otherwise a std::nullopt.
@@ -59,11 +59,11 @@ std::optional<std::string> HasNoNewUnconfirmed(const CTransaction& tx, const CTx
/** Check the intersection between two sets of transactions (a set of mempool entries and a set of
* txids) to make sure they are disjoint.
- * @param[in] ancestors Set of mempool entries corresponding to ancestors of the
- * replacement transactions.
+ * @param[in] ancestors Set of mempool entries corresponding to ancestors of the
+ * replacement transactions.
* @param[in] direct_conflicts Set of txids corresponding to the mempool conflicts
- * (candidates to be replaced).
- * @param[in] txid Transaction ID, included in the error message if violation occurs.
+ * (candidates to be replaced).
+ * @param[in] txid Transaction ID, included in the error message if violation occurs.
* @returns error message if the sets intersect, std::nullopt if they are disjoint.
*/
std::optional<std::string> EntriesAndTxidsDisjoint(const CTxMemPool::setEntries& ancestors,
@@ -81,9 +81,9 @@ std::optional<std::string> PaysMoreThanConflicts(const CTxMemPool::setEntries& i
/** Enforce BIP125 Rule #3 "The replacement transaction pays an absolute fee of at least the sum
* paid by the original transactions." Enforce BIP125 Rule #4 "The replacement transaction must also
* pay for its own bandwidth at or above the rate set by the node's minimum relay fee setting."
- * @param[in] original_fees Total modified fees of original transaction(s).
- * @param[in] replacement_fees Total modified fees of replacement transaction(s).
- * @param[in] replacement_vsize Total virtual size of replacement transaction(s).
+ * @param[in] original_fees Total modified fees of original transaction(s).
+ * @param[in] replacement_fees Total modified fees of replacement transaction(s).
+ * @param[in] replacement_vsize Total virtual size of replacement transaction(s).
* @param[in] txid Transaction ID, included in the error message if violation occurs.
* @returns error string if fees are insufficient, otherwise std::nullopt.
*/