mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-30 02:31:05 +02:00
[amount] Preempt issues with negative fee rates
This commit is contained in:
@ -21,7 +21,7 @@ CAmount CFeeRate::GetFee(size_t nSize) const
|
||||
{
|
||||
CAmount nFee = nSatoshisPerK * nSize / 1000;
|
||||
|
||||
if (nFee == 0 && nSize != 0 && nSatoshisPerK != 0)
|
||||
if (nFee == 0 && nSize != 0 && nSatoshisPerK > 0)
|
||||
nFee = CAmount(1);
|
||||
|
||||
return nFee;
|
||||
|
Reference in New Issue
Block a user