Correct JSON parser for raw Tx

This commit is contained in:
Rene Vergara 2023-09-28 13:56:31 -05:00
parent d78c269d96
commit cbbbaa0fd0
Signed by: pitmutt
GPG Key ID: 65122AD495A7F5B2
1 changed files with 17 additions and 8 deletions

View File

@ -48,12 +48,21 @@ instance FromJSON RawTxResponse where
parseJSON =
withObject "RawTxResponse" $ \obj -> do
i <- obj .: "txid"
o <- obj .: "orchard"
o <- obj .:? "orchard"
h <- obj .: "hex"
a <- o .: "actions"
pure $
RawTxResponse
i
(decodeHexText h)
(getShieldedOutputs (decodeHexText h))
a
case o of
Nothing ->
pure $
RawTxResponse
i
(decodeHexText h)
(getShieldedOutputs (decodeHexText h))
[]
Just o' -> do
a <- o' .: "actions"
pure $
RawTxResponse
i
(decodeHexText h)
(getShieldedOutputs (decodeHexText h))
a