Compare commits

..

No commits in common. "5c4b715a24dbd81845706b357305ff3d4acd7dbf" and "db5a694e7d15e1e423864aad8240f6ef61684cae" have entirely different histories.

View file

@ -279,19 +279,19 @@ instance FromJSON ShieldedOutput where
-- * Orchard -- * Orchard
-- | Type to represent a Unified Address -- | Type to represent a Unified Address
data UnifiedAddress = UnifiedAddress data UnifiedAddress = UnifiedAddress
{ ua_net :: !ZcashNet { ua_net :: ZcashNet
, o_rec :: !OrchardReceiver , o_rec :: BS.ByteString
, s_rec :: !SaplingReceiver , s_rec :: BS.ByteString
, t_rec :: !(Maybe TransparentAddress) , t_rec :: Maybe TransparentAddress
} deriving (Prelude.Show, Eq, Read) } deriving (Prelude.Show, Eq, Read)
-- | Helper type for marshalling UAs -- | Helper type for marshalling UAs
data RawUA = RawUA data RawUA = RawUA
{ raw_net :: !Word8 { raw_net :: Word8
, raw_o :: !BS.ByteString , raw_o :: BS.ByteString
, raw_s :: !BS.ByteString , raw_s :: BS.ByteString
, raw_t :: !BS.ByteString , raw_t :: BS.ByteString
, raw_to :: !BS.ByteString , raw_to :: BS.ByteString
} deriving stock (Eq, Prelude.Show, GHC.Generic) } deriving stock (Eq, Prelude.Show, GHC.Generic)
deriving anyclass (SOP.Generic, SOP.HasDatatypeInfo) deriving anyclass (SOP.Generic, SOP.HasDatatypeInfo)
deriving anyclass (Data.Structured.Show) deriving anyclass (Data.Structured.Show)