Fix #34
This commit is contained in:
parent
4963eea68b
commit
d0ba74c7a1
1 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ import Haskoin.Address (Address)
|
|||
-- | A seed for generating private keys
|
||||
newtype Seed =
|
||||
Seed C.ByteString
|
||||
deriving stock (Prelude.Show, GHC.Generic)
|
||||
deriving stock (Eq, Prelude.Show, GHC.Generic)
|
||||
deriving anyclass (SOP.Generic, SOP.HasDatatypeInfo)
|
||||
deriving anyclass (Data.Structured.Show)
|
||||
deriving (BorshSize, ToBorsh, FromBorsh) via AsStruct Seed
|
||||
|
@ -55,7 +55,7 @@ instance ToBytes Seed where
|
|||
-- | A mnemonic phrase used to derive seeds
|
||||
newtype Phrase =
|
||||
Phrase BS.ByteString
|
||||
deriving stock (Prelude.Show, GHC.Generic)
|
||||
deriving stock (Eq, Prelude.Show, GHC.Generic)
|
||||
deriving anyclass (SOP.Generic, SOP.HasDatatypeInfo)
|
||||
deriving anyclass (Data.Structured.Show)
|
||||
deriving (BorshSize, ToBorsh, FromBorsh) via AsStruct Phrase
|
||||
|
|
Loading…
Reference in a new issue