diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2024-06-10 17:58:13 +0200 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2024-06-18 18:47:51 +0200 |
commit | d8a3496b5ad27bea4c79ea0344f595cc1b95f0d3 (patch) | |
tree | 0aac30137fb85c4fd26398c43f4b2da75002cdc9 /test/functional | |
parent | 8ecb6816781c7c7f423b501cbb2de3abd7250119 (diff) |
rpc: call TestBlockValidity via miner interface
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/rpc_generate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/rpc_generate.py b/test/functional/rpc_generate.py index 20f62079fd..3e250925e7 100755 --- a/test/functional/rpc_generate.py +++ b/test/functional/rpc_generate.py @@ -87,7 +87,7 @@ class RPCGenerateTest(BitcoinTestFramework): txid1 = miniwallet.send_self_transfer(from_node=node)['txid'] utxo1 = miniwallet.get_utxo(txid=txid1) rawtx2 = miniwallet.create_self_transfer(utxo_to_spend=utxo1)['hex'] - assert_raises_rpc_error(-25, 'TestBlockValidity failed: bad-txns-inputs-missingorspent', self.generateblock, node, address, [rawtx2, txid1]) + assert_raises_rpc_error(-25, 'testBlockValidity failed: bad-txns-inputs-missingorspent', self.generateblock, node, address, [rawtx2, txid1]) self.log.info('Fail to generate block with txid not in mempool') missing_txid = '0000000000000000000000000000000000000000000000000000000000000000' |