Remove accidental double-semicolon (harmless but odd)

This commit is contained in:
Jack Grigg 2016-09-06 13:18:33 +12:00
parent 8f3ec042af
commit f50e8313f5
1 changed files with 1 additions and 1 deletions

View File

@ -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;