diff options
author | ishaanam <ishaana.misra@gmail.com> | 2023-07-16 21:42:33 -0400 |
---|---|---|
committer | ishaanam <ishaana.misra@gmail.com> | 2024-03-20 15:05:37 -0400 |
commit | 5952292133d6cc889f51ae771f2e0557311e1efe (patch) | |
tree | 9205b27d3ba82a4a9cd4e7eeb5f09b211e5cc575 /test/functional/wallet_basic.py | |
parent | 54e07ee22ff16fc68583ade0d2b8ffffc81d444a (diff) |
wallet, rpc: show mempool conflicts in `gettransaction` result
Diffstat (limited to 'test/functional/wallet_basic.py')
-rwxr-xr-x | test/functional/wallet_basic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_basic.py b/test/functional/wallet_basic.py index f798eee365..0b52ed7914 100755 --- a/test/functional/wallet_basic.py +++ b/test/functional/wallet_basic.py @@ -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} |