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 20d8936 commit 2fd34baCopy full SHA for 2fd34ba
src/validation.cpp
@@ -575,6 +575,14 @@ class MemPoolAccept
575
m_client_maxfeerate{client_maxfeerate},
576
m_allow_carveouts{allow_carveouts}
577
{
578
+ // If we are using package feerates, we must be doing package submission.
579
+ // It also means carveouts and sibling eviction are not permitted.
580
+ if (m_package_feerates) {
581
+ Assume(m_package_submission);
582
+ Assume(!m_allow_carveouts);
583
+ Assume(!m_allow_sibling_eviction);
584
+ }
585
+ if (m_allow_sibling_eviction) Assume(m_allow_replacement);
586
}
587
};
588
0 commit comments