diff options
| author | SergioDemianLerner <[email protected]> | 2014-09-04 16:23:42 -0300 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-09-29 13:03:22 +0200 |
| commit | a25fd6be138ff2bff7e2ad6a1a789db523c0193f (patch) | |
| tree | 331eae7469995c3a8318df70f1654c7116fd1bd4 /src/pow.cpp | |
| parent | Merge pull request #4970 (diff) | |
| download | discoin-a25fd6be138ff2bff7e2ad6a1a789db523c0193f.tar.xz discoin-a25fd6be138ff2bff7e2ad6a1a789db523c0193f.zip | |
Switch testing framework from MAIN to new UNITTEST network
UNITTEST inherites from MAIN but allows synamically changing its parameters using the ModifiableParams() interface
Diffstat (limited to 'src/pow.cpp')
| -rw-r--r-- | src/pow.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pow.cpp b/src/pow.cpp index 893f6c18b..d50222849 100644 --- a/src/pow.cpp +++ b/src/pow.cpp @@ -81,6 +81,10 @@ bool CheckProofOfWork(uint256 hash, unsigned int nBits) bool fNegative; bool fOverflow; uint256 bnTarget; + + if (Params().SkipProofOfWorkCheck()) + return true; + bnTarget.SetCompact(nBits, &fNegative, &fOverflow); // Check range |