diff options
author | MarcoFalke <falke.marco@gmail.com> | 2022-03-21 11:57:21 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2022-03-21 13:38:08 +0100 |
commit | fa84a49526fcf76e98b0b2f4d4b00b34a8dddf46 (patch) | |
tree | b06a664455f48ae10fa236b3090584b174c2e271 /src/node/miner.h | |
parent | fa8857c3f7863d5cfa9a9e62db7f95aad80ea48e (diff) |
Use CAmount for fee delta and modified fee
Diffstat (limited to 'src/node/miner.h')
-rw-r--r-- | src/node/miner.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/miner.h b/src/node/miner.h index 97c55f2864..5fd9abc280 100644 --- a/src/node/miner.h +++ b/src/node/miner.h @@ -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(); } |