Fix maxmoney calc

This commit is contained in:
jl777
2018-11-23 19:59:48 -11:00
parent e4d6a53cd0
commit f6761fe23c

View File

@@ -256,6 +256,6 @@ int64_t komodo_current_supply(uint32_t nHeight)
}
}
}
return((int64_t)(cur_money + (cur_money * ASSETCHAINS_COMMISSION) / SATOSHIDEN));
return((int64_t)(cur_money + (cur_money * ASSETCHAINS_COMMISSION)));
}