mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-21 17:42:37 +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"],
|
"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}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user