blockchain: remove minor floating point usage

pull/95/head
moneromooo-monero 6 years ago
parent a529f0a6c9
commit deeffaeb5c
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -2933,7 +2933,7 @@ bool Blockchain::check_fee(size_t blob_size, uint64_t fee) const
needed_fee += (blob_size % 1024) ? 1 : 0;
needed_fee *= fee_per_kb;
if (fee < needed_fee * 0.98) // keep a little buffer on acceptance
if (fee < needed_fee - needed_fee / 50) // keep a little 2% buffer on acceptance - no integer overflow
{
MERROR_VER("transaction fee is not enough: " << print_money(fee) << ", minimum fee: " << print_money(needed_fee));
return false;

Loading…
Cancel
Save