mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-18 13:17:55 +02:00
Remove txmempool implicit-integer-sign-change sanitizer suppressions
This commit is contained in:
parent
d2f6d2a95a
commit
3ef756a5b5
2 changed files with 2 additions and 3 deletions
|
|
@ -370,7 +370,7 @@ void CTxMemPoolEntry::UpdateDescendantState(int32_t modifySize, CAmount modifyFe
|
|||
nSizeWithDescendants += modifySize;
|
||||
assert(nSizeWithDescendants > 0);
|
||||
nModFeesWithDescendants = SaturatingAdd(nModFeesWithDescendants, modifyFee);
|
||||
nCountWithDescendants += modifyCount;
|
||||
nCountWithDescendants += uint64_t(modifyCount);
|
||||
assert(int64_t(nCountWithDescendants) > 0);
|
||||
}
|
||||
|
||||
|
|
@ -379,7 +379,7 @@ void CTxMemPoolEntry::UpdateAncestorState(int32_t modifySize, CAmount modifyFee,
|
|||
nSizeWithAncestors += modifySize;
|
||||
assert(nSizeWithAncestors > 0);
|
||||
nModFeesWithAncestors = SaturatingAdd(nModFeesWithAncestors, modifyFee);
|
||||
nCountWithAncestors += modifyCount;
|
||||
nCountWithAncestors += uint64_t(modifyCount);
|
||||
assert(int64_t(nCountWithAncestors) > 0);
|
||||
nSigOpCostWithAncestors += modifySigOps;
|
||||
assert(int(nSigOpCostWithAncestors) >= 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue