Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Jimbo4350 committed Nov 14, 2023
1 parent 8bff8f6 commit 68031f4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cardano-cli/src/Cardano/CLI/Legacy/Commands/Transaction.hs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ data LegacyTransactionCmds
| TransactionCalculateMinValueCmd
AnyCardanoEra
ProtocolParamsFile
TxOutAnyEra
TxOutShelleyBasedEra
| TransactionHashScriptDataCmd
ScriptDataOrFile
| TransactionTxIdCmd
Expand Down
2 changes: 1 addition & 1 deletion cardano-cli/src/Cardano/CLI/Legacy/Options.hs
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ pTransaction envCli =
TransactionCalculateMinValueCmd
<$> pLegacyCardanoEra envCli
<*> pProtocolParamsFile
<*> pTxOut
<*> pTxOutShelleyBased

pTxHashScriptData :: Parser LegacyTransactionCmds
pTxHashScriptData =
Expand Down
6 changes: 3 additions & 3 deletions cardano-cli/src/Cardano/CLI/Legacy/Run/Transaction.hs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ runLegacyTransactionBuildCmd :: ()
-> [TxIn] -- ^ Read only reference inputs
-> [RequiredSigner] -- ^ Required signers
-> [TxIn] -- ^ Transaction inputs for collateral, only key witnesses, no scripts.
-> Maybe TxOutAnyEra -- ^ Return collateral
-> Maybe TxOutShelleyBasedEra -- ^ Return collateral
-> Maybe Lovelace -- ^ Total collateral
-> [TxOutAnyEra]
-> TxOutChangeAddress
Expand Down Expand Up @@ -125,7 +125,7 @@ runLegacyTransactionBuildRawCmd :: ()
-> [(TxIn, Maybe (ScriptWitnessFiles WitCtxTxIn))]
-> [TxIn] -- ^ Read only reference inputs
-> [TxIn] -- ^ Transaction inputs for collateral, only key witnesses, no scripts.
-> Maybe TxOutAnyEra
-> Maybe TxOutShelleyBasedEra -- ^ Return collateral
-> Maybe Lovelace -- ^ Total collateral
-> [RequiredSigner]
-> [TxOutAnyEra]
Expand Down Expand Up @@ -238,7 +238,7 @@ runLegacyTransactionCalculateMinFeeCmd
runLegacyTransactionCalculateMinValueCmd :: ()
=> AnyShelleyBasedEra
-> ProtocolParamsFile
-> TxOutAnyEra
-> TxOutShelleyBasedEra
-> ExceptT TxCmdError IO ()
runLegacyTransactionCalculateMinValueCmd
(AnyShelleyBasedEra era)
Expand Down

0 comments on commit 68031f4

Please sign in to comment.