diff --git a/test/functional/wallet_basic.py b/test/functional/wallet_basic.py index 01149a0977..9ed6926917 100755 --- a/test/functional/wallet_basic.py +++ b/test/functional/wallet_basic.py @@ -680,8 +680,21 @@ class WalletTest(BitcoinTestFramework): "amount": baz["amount"], "category": baz["category"], "vout": baz["vout"]} - expected_fields = frozenset({'amount', 'bip125-replaceable', 'confirmations', 'details', 'fee', - 'hex', 'lastprocessedblock', 'time', 'timereceived', 'trusted', 'txid', 'wtxid', 'walletconflicts'}) + expected_fields = frozenset({ + 'amount', + 'bip125-replaceable', + 'confirmations', + 'details', + 'fee', + 'hex', + 'lastprocessedblock', + 'time', + 'timereceived', + 'trusted', + 'txid', + 'wtxid', + 'walletconflicts', + }) verbose_field = "decoded" expected_verbose_fields = expected_fields | {verbose_field}