diff options
| author | Pieter Wuille <[email protected]> | 2014-08-27 22:35:14 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-08-27 22:39:28 +0200 |
| commit | d1062e32fa66db44d0302bbff9d5634f5c698155 (patch) | |
| tree | 5b7db2bc339f6d474594c8fe77b710751cdbb5cd /src/test/DoS_tests.cpp | |
| parent | Merge pull request #4764 (diff) | |
| parent | replace ComputeMinWork with CheckMinWork (diff) | |
| download | discoin-d1062e32fa66db44d0302bbff9d5634f5c698155.tar.xz discoin-d1062e32fa66db44d0302bbff9d5634f5c698155.zip | |
Merge pull request #4377
654871d replace ComputeMinWork with CheckMinWork (jtimon)
b343c1a Move CBlockIndex::GetBlockWork() to pow::GetProofIncrement(nBits) (jtimon)
c2c02f3 Move UpdateTime to pow (jtimon)
Diffstat (limited to 'src/test/DoS_tests.cpp')
| -rw-r--r-- | src/test/DoS_tests.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/test/DoS_tests.cpp b/src/test/DoS_tests.cpp index 4ecf6e253..8fa38c360 100644 --- a/src/test/DoS_tests.cpp +++ b/src/test/DoS_tests.cpp @@ -107,11 +107,7 @@ static bool CheckNBits(unsigned int nbits1, int64_t time1, unsigned int nbits2, return CheckNBits(nbits2, time2, nbits1, time1); int64_t deltaTime = time2-time1; - uint256 required; - required.SetCompact(ComputeMinWork(nbits1, deltaTime)); - uint256 have; - have.SetCompact(nbits2); - return (have <= required); + return CheckMinWork(nbits2, nbits1, deltaTime); } BOOST_AUTO_TEST_CASE(DoS_checknbits) |