Revert "test: Add temporary logging to debug #20975"

This reverts commit faa94961d6.
This commit is contained in:
MarcoFalke 2021-06-22 10:15:20 +02:00
parent fadb55085a
commit fa27baa9c8
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -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']