When filtering out lower fee parents, compare with effective fee instead of base fee to include a CPFP chain of transactions.
This commit is contained in:
@@ -53,7 +53,7 @@ class MempoolBlocks {
|
||||
// Pass down size + fee to all unconfirmed children
|
||||
let sizes = 0;
|
||||
memPoolArray.forEach((tx, i) => {
|
||||
sizes += tx.weight
|
||||
sizes += tx.weight;
|
||||
if (sizes > 4000000 * 8) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user