diff options
author | Matthew Zipkin <pinheadmz@gmail.com> | 2024-04-16 15:34:24 -0400 |
---|---|---|
committer | Matthew Zipkin <pinheadmz@gmail.com> | 2024-12-04 14:37:48 -0500 |
commit | f9650e18ea6edb41c0136cc2ec3c7e0aba1bf83a (patch) | |
tree | 1fc889facc4adcb5e64118c7b5aba290635bdc7e /src/policy | |
parent | 221c789e91696569fa34dbd162d26e98cf9cab64 (diff) |
rbf: remove unecessary newline at end of error string
Diffstat (limited to 'src/policy')
-rw-r--r-- | src/policy/rbf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/rbf.cpp b/src/policy/rbf.cpp index b634dea561..bc76361fba 100644 --- a/src/policy/rbf.cpp +++ b/src/policy/rbf.cpp @@ -71,7 +71,7 @@ std::optional<std::string> GetEntriesForConflicts(const CTransaction& tx, // descendants (i.e. if multiple conflicts share a descendant, it will be counted multiple // times), but we just want to be conservative to avoid doing too much work. if (nConflictingCount > MAX_REPLACEMENT_CANDIDATES) { - return strprintf("rejecting replacement %s; too many potential replacements (%d > %d)\n", + return strprintf("rejecting replacement %s; too many potential replacements (%d > %d)", txid.ToString(), nConflictingCount, MAX_REPLACEMENT_CANDIDATES); |