QA: wallet_basic: Split wtx expected_fields over multiple lines to minimise merge conflicts

This commit is contained in:
Luke Dashjr 2022-02-08 23:08:00 +00:00
parent 96ec3b67a7
commit 64dbce8455

View File

@ -680,8 +680,21 @@ class WalletTest(BitcoinTestFramework):
"amount": baz["amount"], "amount": baz["amount"],
"category": baz["category"], "category": baz["category"],
"vout": baz["vout"]} "vout": baz["vout"]}
expected_fields = frozenset({'amount', 'bip125-replaceable', 'confirmations', 'details', 'fee', expected_fields = frozenset({
'hex', 'lastprocessedblock', 'time', 'timereceived', 'trusted', 'txid', 'wtxid', 'walletconflicts'}) 'amount',
'bip125-replaceable',
'confirmations',
'details',
'fee',
'hex',
'lastprocessedblock',
'time',
'timereceived',
'trusted',
'txid',
'wtxid',
'walletconflicts',
})
verbose_field = "decoded" verbose_field = "decoded"
expected_verbose_fields = expected_fields | {verbose_field} expected_verbose_fields = expected_fields | {verbose_field}