mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-21 09:32:39 +02:00
QA: wallet_basic: Split wtx expected_fields over multiple lines to minimise merge conflicts
This commit is contained in:
parent
96ec3b67a7
commit
64dbce8455
@ -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}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user