This commit is contained in:
jl777
2018-04-19 17:41:56 +03:00
parent ff556351ad
commit 6897193353

View File

@@ -1172,7 +1172,7 @@ arith_uint256 komodo_PoWtarget(int32_t *percPoSp,arith_uint256 target,int32_t he
{
if ( height > 1200 )
{
factor = arith_uint256(goalperc * goalperc) / arith_uint256((percPoS + goalperc) * (percPoS + goalperc));
factor = arith_uint256(goalperc * goalperc) / arith_uint256(2 * (percPoS + goalperc) * (percPoS + goalperc));
bnTarget = (ave * factor);
}
else bnTarget = (ave * arith_uint256(goalperc)) / arith_uint256(percPoS + goalperc);