[amount] Preempt issues with negative fee rates

pull/7705/head
MarcoFalke 9 years ago
parent faf756ae4e
commit fad13b1612

@ -21,7 +21,7 @@ CAmount CFeeRate::GetFee(size_t nSize) const
{ {
CAmount nFee = nSatoshisPerK * nSize / 1000; CAmount nFee = nSatoshisPerK * nSize / 1000;
if (nFee == 0 && nSize != 0 && nSatoshisPerK != 0) if (nFee == 0 && nSize != 0 && nSatoshisPerK > 0)
nFee = CAmount(1); nFee = CAmount(1);
return nFee; return nFee;

Loading…
Cancel
Save