Merge c4d45b695e into merged_master (Bitcoin PR bitcoin/bitcoin#30295

This commit is contained in:
ikripaka 2026-03-06 15:11:52 +00:00
commit 2613713a7e
No known key found for this signature in database
3 changed files with 24 additions and 11 deletions

View file

@ -1434,7 +1434,7 @@ bool MemPoolAccept::PackageMempoolChecks(const std::vector<CTransactionRef>& txn
const CFeeRate package_feerate(m_subpackage.m_total_modified_fees, m_subpackage.m_total_vsize);
if (package_feerate <= parent_feerate) {
return package_state.Invalid(PackageValidationResult::PCKG_POLICY,
"package RBF failed: package feerate is less than parent feerate",
"package RBF failed: package feerate is less than or equal to parent feerate",
strprintf("package feerate %s <= parent feerate is %s", package_feerate.ToString(), parent_feerate.ToString()));
}