Skip to content

Commit

Permalink
log: package rbf checks succeeding
Browse files Browse the repository at this point in the history
  • Loading branch information
instagibbs committed May 8, 2024
1 parent a8a2fb0 commit 2b16eee
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/validation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1189,6 +1189,11 @@ bool MemPoolAccept::PackageMempoolChecks(const std::vector<CTransactionRef>& txn
"package RBF failed: insufficient anti-DoS fees", *err_string);
}

LogPrint(BCLog::TXPACKAGES, "package RBF checks passed: parent %s (wtxid=%s), child %s (wtxid=%s)\n",
txns.front()->GetHash().ToString(), txns.front()->GetWitnessHash().ToString(),
txns.back()->GetHash().ToString(), txns.back()->GetWitnessHash().ToString());


return true;
}

Expand Down

0 comments on commit 2b16eee

Please sign in to comment.