diff --git a/cardano_clusterlib/transaction_group.py b/cardano_clusterlib/transaction_group.py index 4c77ef2..cc3b00c 100644 --- a/cardano_clusterlib/transaction_group.py +++ b/cardano_clusterlib/transaction_group.py @@ -66,7 +66,7 @@ def get_txid(self, tx_body_file: itp.FileType = "", tx_file: itp.FileType = "") raise AssertionError(msg) return ( - self._clusterlib_obj.cli(["transaction", "txid", *cli_args]) + self._clusterlib_obj.cli(["transaction", "txid", "--output-text", *cli_args]) .stdout.rstrip() .decode("ascii") ) @@ -576,6 +576,7 @@ def estimate_fee( [ "transaction", "calculate-min-fee", + "--output-text", *self._clusterlib_obj.magic_args, "--protocol-params-file", str(self._clusterlib_obj.pparams_file),