Skip to content

Commit

Permalink
Remove redundant bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
jhbertra authored and Dino Morelli committed Sep 30, 2022
1 parent 9b3eb1b commit 111d607
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -392,7 +392,7 @@ mkInitialTxBodyContent protocol marloweVersion MarloweContext{..} walletCtx cons
:: (Chain.TxOutRef, Chain.TransactionOutput, Maybe Chain.Redeemer)
-> Maybe (C.TxIn, C.BuildTxWith C.BuildTx (C.Witness C.WitCtxTxIn C.BabbageEra))
toCardanoTxInPair (txOutRef, txOut, mredeemer) =
(,) <$> (toCardanoTxIn txOutRef) <*> (C.BuildTxWith <$> toCardanoWitness mredeemer txOut)
(,) <$> toCardanoTxIn txOutRef <*> (C.BuildTxWith <$> toCardanoWitness mredeemer txOut)

mkTxIns = do
walletInputs <- getWalletInputs
Expand Down

0 comments on commit 111d607

Please sign in to comment.