diff options
| author | Gregory Sanders <[email protected]> | 2019-01-23 16:43:44 -0500 |
|---|---|---|
| committer | Gregory Sanders <[email protected]> | 2019-01-24 09:48:34 -0500 |
| commit | b651ef7e1c39a820089695b29d14a07d910a385a (patch) | |
| tree | b61640f5b3ce04a7106763881adce16c661a50aa | |
| parent | remove some magic mining constants in functional tests (diff) | |
| download | discoin-b651ef7e1c39a820089695b29d14a07d910a385a.tar.xz discoin-b651ef7e1c39a820089695b29d14a07d910a385a.zip | |
submitheader: more directly test missing prev block header
| -rwxr-xr-x | test/functional/mining_basic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/mining_basic.py b/test/functional/mining_basic.py index 713c8beab..5dafb11ac 100755 --- a/test/functional/mining_basic.py +++ b/test/functional/mining_basic.py @@ -166,7 +166,7 @@ class MiningTest(BitcoinTestFramework): self.log.info('submitheader tests') assert_raises_rpc_error(-22, 'Block header decode failed', lambda: node.submitheader(hexdata='xx' * BLOCK_HEADER_SIZE)) assert_raises_rpc_error(-22, 'Block header decode failed', lambda: node.submitheader(hexdata='ff' * (BLOCK_HEADER_SIZE-2))) - assert_raises_rpc_error(-25, 'Must submit previous header', lambda: node.submitheader(hexdata='ff' * BLOCK_HEADER_SIZE)) + assert_raises_rpc_error(-25, 'Must submit previous header', lambda: node.submitheader(hexdata=super(CBlock, bad_block).serialize().hex())) block.nTime += 1 block.solve() |