Clean up Digishield for use in Guldencoin.
Removing unused local variable nHeight.
Both nTargetSpacing and nTargetTimespanNEW are defined as 2.5*60, which means that retargetInterval will always equal 1. This means that (pindexLast->nHeight+1) % retargetInterval will always resolve to 0 and therefore the block following if ((pindexLast->nHeight+1) % retargetInterval != 0) will never be ran. Removing the complete block as it is dead code.
Removing the genesis exception, we're never mining a genesis block with DIGI.
Removing the now unused local variables nProofOfWorkLimit and retargetSpacing.