From 12b384112ea1be757e8c0ff0adb14b92586ede6f Mon Sep 17 00:00:00 2001 From: Michael Toutonghi Date: Sun, 20 May 2018 17:18:48 -0700 Subject: [PATCH] final fix to pos dif algo --- src/pow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pow.cpp b/src/pow.cpp index 53add30b5..b7c8a4098 100644 --- a/src/pow.cpp +++ b/src/pow.cpp @@ -228,7 +228,7 @@ uint32_t lwmaGetNextPOSRequired(const CBlockIndex* pindexLast, const Consensus:: if (x) { idx[i].consecutive = false; - idx[i].solveTime = VERUS_BLOCK_POSUNITS << x; + idx[i].solveTime = VERUS_BLOCK_POSUNITS * x; idx[i].nBits = nBits; } else