From f50e8313f5d0c88afa7213ff28d5947484648f3d Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 6 Sep 2016 13:18:33 +1200 Subject: [PATCH] Remove accidental double-semicolon (harmless but odd) --- src/rpcblockchain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index cf2b889e8..3fae1be71 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -41,7 +41,7 @@ double GetDifficultyINTERNAL(const CBlockIndex* blockindex, bool networkDifficul } uint32_t powLimit = - UintToArith256(Params().GetConsensus().powLimit).GetCompact();; + UintToArith256(Params().GetConsensus().powLimit).GetCompact(); int nShift = (bits >> 24) & 0xff; int nShiftAmount = (powLimit >> 24) & 0xff;