| 457 | } |
| 458 | |
| 459 | void CTxMemPoolEntry::UpdateDescendantState(int64_t modifySize, CAmount modifyFee, int64_t modifyCount) |
| 460 | { |
| 461 | nSizeWithDescendants += modifySize; |
| 462 | assert(int64_t(nSizeWithDescendants) > 0); |
| 463 | nModFeesWithDescendants = SaturatingAdd(nModFeesWithDescendants, modifyFee); |
| 464 | nCountWithDescendants += modifyCount; |
| 465 | assert(int64_t(nCountWithDescendants) > 0); |
| 466 | } |
| 467 | |
| 468 | void CTxMemPoolEntry::UpdateAncestorState(int64_t modifySize, CAmount modifyFee, int64_t modifyCount, int64_t modifySigOps, int64_t discountSize) |
| 469 | { |
no test coverage detected