Skip to content

Commit

Permalink
Remove unnecesarry parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
iquerejeta committed Feb 7, 2023
1 parent efe406b commit d264b45
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cardano-crypto-tests/src/Test/Crypto/VRF.hs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ prop_outputToBatchComat output =
-- Praos <-> BatchCompatPraos VerKey compatibility. We check that a proof is validated with a
-- transformed key
--
prop_verKeyValidConversion :: SizedSeed (32) -> Message -> Bool
prop_verKeyValidConversion :: SizedSeed 32 -> Message -> Bool
prop_verKeyValidConversion sharedBytes msg =
let
vkPraos = deriveVerKeyVRF . genKeyVRF . unSizedSeed $ sharedBytes
Expand All @@ -255,7 +255,7 @@ prop_verKeyValidConversion sharedBytes msg =
-- Praos <-> BatchCompatPraos SignKey compatibility. We check that a proof is validated with a
-- transformed key
--
prop_signKeyValidConversion :: SizedSeed (32) -> Bool
prop_signKeyValidConversion :: SizedSeed 32 -> Bool
prop_signKeyValidConversion sharedBytes =
let
skPraos = genKeyVRF . unSizedSeed $ sharedBytes
Expand All @@ -267,7 +267,7 @@ prop_signKeyValidConversion sharedBytes =
-- Praos <-> BatchCompatPraos Output compatibility. We check that a proof is validated with a
-- transformed output
--
prop_outputValidConversion :: SizedSeed (32) -> Message -> Bool
prop_outputValidConversion :: SizedSeed 32 -> Message -> Bool
prop_outputValidConversion sharedBytes msg =
let
skPraos = genKeyVRF . unSizedSeed $ sharedBytes
Expand All @@ -283,7 +283,7 @@ prop_outputValidConversion sharedBytes msg =
-- Praos <-> BatchCompatPraos compatibility. We check that a proof is validated with a
-- transformed key and output
--
prop_fullValidConversion :: SizedSeed (32) -> Message -> Bool
prop_fullValidConversion :: SizedSeed 32 -> Message -> Bool
prop_fullValidConversion sharedBytes msg =
let
skPraos = genKeyVRF . unSizedSeed $ sharedBytes
Expand Down

0 comments on commit d264b45

Please sign in to comment.