[amount] Preempt issues with negative fee rates
This commit is contained in:
parent
faf756ae4e
commit
fad13b1612
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue