Use CAmount for fee delta and modified fee

This commit is contained in:
MarcoFalke 2022-03-21 11:57:21 +01:00
parent fa8857c3f7
commit fa84a49526
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
3 changed files with 6 additions and 6 deletions

View file

@ -45,7 +45,7 @@ struct CTxMemPoolModifiedEntry {
nSigOpCostWithAncestors = entry->GetSigOpCostWithAncestors();
}
int64_t GetModifiedFee() const { return iter->GetModifiedFee(); }
CAmount GetModifiedFee() const { return iter->GetModifiedFee(); }
uint64_t GetSizeWithAncestors() const { return nSizeWithAncestors; }
CAmount GetModFeesWithAncestors() const { return nModFeesWithAncestors; }
size_t GetTxSize() const { return iter->GetTxSize(); }