From 8c634d8aa6dcbbb718835e8dda39a8c776d2a2dd Mon Sep 17 00:00:00 2001 From: Rene Vergara Date: Mon, 5 Feb 2024 20:25:06 -0600 Subject: [PATCH] Update accesor for HexString --- src/Data/HexString.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data/HexString.hs b/src/Data/HexString.hs index 2fa7d1b..273a70a 100644 --- a/src/Data/HexString.hs +++ b/src/Data/HexString.hs @@ -37,7 +37,7 @@ import qualified Generics.SOP as SOP -- | Represents a Hex string. Guarantees that all characters it contains -- are valid hex characters. newtype HexString = HexString - { bytes :: BS.ByteString + { hexBytes :: BS.ByteString } deriving stock (Eq, Prelude.Show, GHC.Generic) deriving anyclass (SOP.Generic, SOP.HasDatatypeInfo) deriving anyclass (Data.Structured.Show)