diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-06-22 10:15:20 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-06-22 10:04:06 +0200 |
commit | fa27baa9c8a13239625e5a7b6c472d236fe5b9fa (patch) | |
tree | 733b996c8e8ae9009570fbf5f2cf7d601037bad1 /test | |
parent | fadb55085a02c9e355617bcb5f84b6335e4f8c9d (diff) |
Revert "test: Add temporary logging to debug #20975"
This reverts commit faa94961d6e38392ba068381726ed4e033367b03.
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/test_framework/blocktools.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/functional/test_framework/blocktools.py b/test/functional/test_framework/blocktools.py index f35ea6c122..e91b44e776 100644 --- a/test/functional/test_framework/blocktools.py +++ b/test/functional/test_framework/blocktools.py @@ -181,11 +181,6 @@ def create_raw_transaction(node, txid, to_address, *, amount): signed_psbt = wrpc.walletprocesspsbt(psbt) psbt = signed_psbt['psbt'] final_psbt = node.finalizepsbt(psbt) - if not final_psbt["complete"]: - node.log.info(f'final_psbt={final_psbt}') - for w in node.listwallets(): - wrpc = node.get_wallet_rpc(w) - node.log.info(f'listunspent={wrpc.listunspent()}') assert_equal(final_psbt["complete"], True) return final_psbt['hex'] |