Skip to content

Commit 935bff5

Browse files
committed
feat(cli): add --output-text option to UTxO queries
The `--output-text` flag has been added to CLI commands for querying UTxO information. This ensures the output is consistently formatted as plain text, not JSON.
1 parent 8cf30a6 commit 935bff5

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

cardano_node_tests/tests/test_cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -787,6 +787,7 @@ def test_pretty_utxo(
787787
"utxo",
788788
"--address",
789789
dst_address,
790+
"--output-text",
790791
*cluster.magic_args,
791792
]
792793
)

cardano_node_tests/tests/tests_plutus/test_mint_raw.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def _check_pretty_utxo(
6060
"utxo",
6161
"--tx-in",
6262
f"{txid}#0",
63+
"--output-text",
6364
*cluster_obj.magic_args,
6465
]
6566
)

cardano_node_tests/tests/tests_plutus/test_spend_raw.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ def _check_pretty_utxo(
8181
"utxo",
8282
"--tx-in",
8383
f"{txid}#0",
84+
"--output-text",
8485
*cluster_obj.magic_args,
8586
]
8687
)

0 commit comments

Comments
 (0)