Round amount per user in soak and rain
Closed this issue · 2 comments
greenbigfrog commented
incognitojam commented
Would converting the value to a BigDecimal be enough to fix this? It seems to handle formatting itself already.
So this:
amount_each = amount / targets.size
Would go to this:
amount_each = BigDecimal.new(amount / targets.size)
greenbigfrog commented
and after that round it. Look at def amount