[amount] Preempt issues with negative fee rates

This commit is contained in:
MarcoFalke 2016-03-19 15:19:29 +01:00
parent faf756ae4e
commit fad13b1612

View file

@ -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;