We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b5e0bef + 990a890 commit 75e3481Copy full SHA for 75e3481
1 file changed
cardano-api/src/Cardano/Api/Experimental/Plutus/Internal/ScriptWitness.hs
@@ -1,5 +1,6 @@
1
{-# LANGUAGE AllowAmbiguousTypes #-}
2
{-# LANGUAGE DataKinds #-}
3
+{-# LANGUAGE EmptyDataDeriving #-}
4
{-# LANGUAGE FlexibleContexts #-}
5
{-# LANGUAGE FlexibleInstances #-}
6
{-# LANGUAGE GADTs #-}
@@ -173,7 +174,7 @@ data PlutusScriptPurpose
173
174
| -- | Witnesses a vote
175
VotingScript
176
-data NoScriptDatum
177
+data NoScriptDatum deriving (Show, Eq)
178
179
-- | The PlutusScriptDatum type family is used to determine if a script datum is allowed
180
-- for a given plutus script purpose and version. This change was proposed in CIP-69
0 commit comments