diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-10-02 10:27:36 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-10-02 10:39:55 +0200 |
| commit | 8d132431b4f6a7676482815231cd923d9047d541 (patch) | |
| tree | c3d7a2dbb2868954748761161896cc8f02b940b1 /src/pow.cpp | |
| parent | Merge pull request #4845 (diff) | |
| download | discoin-8d132431b4f6a7676482815231cd923d9047d541.tar.xz discoin-8d132431b4f6a7676482815231cd923d9047d541.zip | |
Revert merge of pull #4845
It breaks the new mingw tests!
See
- https://travis-ci.org/bitcoin/bitcoin/jobs/36845581
- https://travis-ci.org/bitcoin/bitcoin/jobs/36845582
This reverts commit 470590277782cce2fe73275c74523aef59a51eab, 5e2e7fcb99738d9254d4030d53e4f711b2fc5ee0, a25fd6be138ff2bff7e2ad6a1a789db523c0193f.
Diffstat (limited to 'src/pow.cpp')
| -rw-r--r-- | src/pow.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pow.cpp b/src/pow.cpp index d50222849..893f6c18b 100644 --- a/src/pow.cpp +++ b/src/pow.cpp @@ -81,10 +81,6 @@ 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 |