Skip to content

Commit

Permalink
Drop the --cddl-format flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoura committed Jun 22, 2023
1 parent 6f26a0d commit 10dba1d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions cardano_clusterlib/clusterlib_klass.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@ def __init__(

self.tx_era = tx_era

# TODO: add temporary switch for CDDL format, until it is made default
self.use_cddl = False

self.overwrite_outfiles = True

# groups of commands
Expand Down
4 changes: 0 additions & 4 deletions cardano_clusterlib/transaction_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,6 @@ def build_raw_tx_bare(
if total_collateral_amount:
misc_args.extend(["--tx-total-collateral", str(total_collateral_amount)])

misc_args.extend(["--cddl-format"] if self._clusterlib_obj.use_cddl else [])

if tx_files.metadata_json_files and tx_files.metadata_json_detailed_schema:
misc_args.append("--json-metadata-detailed-schema")

Expand Down Expand Up @@ -857,8 +855,6 @@ def build_tx( # noqa: C901
if total_collateral_amount:
misc_args.extend(["--tx-total-collateral", str(total_collateral_amount)])

misc_args.extend(["--cddl-format"] if self._clusterlib_obj.use_cddl else [])

if calc_script_cost_file:
misc_args.extend(["--calculate-plutus-script-cost", str(calc_script_cost_file)])
out_file = Path(calc_script_cost_file)
Expand Down

0 comments on commit 10dba1d

Please sign in to comment.