diff options
author | CJentzsch <jentzsch.software@gmail.com> | 2015-08-05 16:32:10 +0800 |
---|---|---|
committer | CJentzsch <jentzsch.software@gmail.com> | 2015-08-05 16:32:10 +0800 |
commit | 24e14e18d63fc0ddce1f9eef8251ed32d9b5ec0b (patch) | |
tree | 896fc64060604d797b529c643d379765ab1d3858 /BasicTests | |
parent | 792bf6647aea1f28e5b9c26d71a80e8d820cf38b (diff) | |
download | dexon-tests-24e14e18d63fc0ddce1f9eef8251ed32d9b5ec0b.tar dexon-tests-24e14e18d63fc0ddce1f9eef8251ed32d9b5ec0b.tar.gz dexon-tests-24e14e18d63fc0ddce1f9eef8251ed32d9b5ec0b.tar.bz2 dexon-tests-24e14e18d63fc0ddce1f9eef8251ed32d9b5ec0b.tar.lz dexon-tests-24e14e18d63fc0ddce1f9eef8251ed32d9b5ec0b.tar.xz dexon-tests-24e14e18d63fc0ddce1f9eef8251ed32d9b5ec0b.tar.zst dexon-tests-24e14e18d63fc0ddce1f9eef8251ed32d9b5ec0b.zip |
more difficulty tests
Diffstat (limited to 'BasicTests')
-rw-r--r-- | BasicTests/difficulty.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/BasicTests/difficulty.json b/BasicTests/difficulty.json index bf60d9fe8..7539f576f 100644 --- a/BasicTests/difficulty.json +++ b/BasicTests/difficulty.json @@ -41,6 +41,48 @@ "currentBlockNumber" : "200001", "currentDifficulty" : "999512" }, + "ExpDiffPreBlock300000Increase" : { + "parentTimestamp" : "42", + "parentDifficulty" : "1000000", + "currentTimestamp" : "43", + "currentBlockNumber" : "300000", + "currentDifficulty" : "1000488" + }, + "ExpDiffPreBlock300000Decrease" : { + "parentTimestamp" : "42", + "parentDifficulty" : "1000000", + "currentTimestamp" : "60", + "currentBlockNumber" : "300000", + "currentDifficulty" : "999512" + }, + "ExpDiffAtBlock300000Increase" : { + "parentTimestamp" : "42", + "parentDifficulty" : "1000000", + "currentTimestamp" : "43", + "currentBlockNumber" : "300000", + "currentDifficulty" : "1000488" + }, + "ExpDiffAtBlock300000Decrease" : { + "parentTimestamp" : "42", + "parentDifficulty" : "1000000", + "currentTimestamp" : "60", + "currentBlockNumber" : "300000", + "currentDifficulty" : "999512" + }, + "ExpDiffPostBlock300000Increase" : { + "parentTimestamp" : "42", + "parentDifficulty" : "1000000", + "currentTimestamp" : "43", + "currentBlockNumber" : "300001", + "currentDifficulty" : "1000488" + }, + "ExpDiffPostBlock300000Decrease" : { + "parentTimestamp" : "42", + "parentDifficulty" : "1000000", + "currentTimestamp" : "60", + "currentBlockNumber" : "300001", + "currentDifficulty" : "999512" + }, "ExpDiffInAYearIncrease" : { "parentTimestamp" : "42", "parentDifficulty" : "1000000", |