File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,6 @@ tokenNameParser = do
123123
124124convertOutputDatum :: OutputDatum -> Maybe (DatumHash , Maybe Datum )
125125convertOutputDatum = \ case
126- -- FIXME" tmp implementation, check if something exists already
127126 NoOutputDatum -> Nothing
128127 OutputDatumHash dh -> Just (dh, Nothing )
129128 OutputDatum d -> Just (ScriptUtils. datumHash d, Just d)
@@ -133,7 +132,7 @@ outputDatumParser :: Parser OutputDatum
133132outputDatumParser =
134133 OutputDatumHash <$> datumHashParser
135134 <|> " TxOutDatumNone" $> NoOutputDatum
136- <|> " OutputDatum " $> error " OutputDatum not supported yet " -- FIXME: some better handling
135+ -- FIXME: will it fail for "TxOutDatumInline ..."?
137136
138137datumHashParser :: Parser DatumHash
139138datumHashParser = do
You can’t perform that action at this time.
0 commit comments