diff options
| author | Patrick Lodder <[email protected]> | 2021-08-13 00:32:04 +0000 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2021-08-13 03:44:02 +0200 |
| commit | 6aff1141f49b17e3cda9395636c5d473b524af63 (patch) | |
| tree | 1cddbacd702e8fb1306b63d2c1dff4d976274f99 /qa/pull-tester/rpc-tests.py | |
| parent | Merge pull request #2437 from michilumin/1.14.4-mintxfee (diff) | |
| download | discoin-6aff1141f49b17e3cda9395636c5d473b524af63.tar.xz discoin-6aff1141f49b17e3cda9395636c5d473b524af63.zip | |
qa: fix p2p-acceptblock
This test failed because the sheer number of blocks required to
trigger the max length of a fork we'd keep, exceed the v4 fork
height on regtest.
- Adapted the blocktools.py miner to mine 0x00620004 blocks as done
elsewhere too (be it suboptimal, but at least consistent)
- Adapted the test to work with 1440 blocks (Dogecoin limit)
instead of 288 (Bitcoin limit)
- Made p2p-acceptblock a standard test instead of an extended test
Diffstat (limited to 'qa/pull-tester/rpc-tests.py')
| -rwxr-xr-x | qa/pull-tester/rpc-tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/pull-tester/rpc-tests.py b/qa/pull-tester/rpc-tests.py index fd78d3701..7eb6038dc 100755 --- a/qa/pull-tester/rpc-tests.py +++ b/qa/pull-tester/rpc-tests.py @@ -116,6 +116,7 @@ testScripts = [ 'wallet-dump.py', 'listtransactions.py', # vv Tests less than 60s vv + 'p2p-acceptblock.py', 'sendheaders.py', 'zapwallettxes.py', 'importmulti.py', @@ -191,7 +192,6 @@ testScriptsExt = [ 'forknotify.py', 'invalidateblock.py', 'maxblocksinflight.py', - 'p2p-acceptblock.py', ] |