wallet, rpc: show mempool conflicts in gettransaction result

This commit is contained in:
ishaanam
2023-07-16 21:42:33 -04:00
parent 54e07ee22f
commit 5952292133
3 changed files with 28 additions and 1 deletions

View File

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