ensure the uniqueness of ResultTag

This commit is contained in:
Hongrui Fang 2022-08-25 15:00:38 +08:00
parent a27af0b58a
commit 7cdf0e2fc0
7 changed files with 159 additions and 107 deletions

View file

@ -71,13 +71,13 @@ data Parameters = Parameters
-- ^ Whether the 'GovernorDatum.proposalTimings'field of the output
-- governor datum is valid or not.
, withGovernorDatum :: Bool
, -- Whether the output GST UTxO will carry the governor datum.
presentWitness :: Bool
, -- Whether to spend the UTxO referenced by 'Governor.gstOutRef'.
mintMoreThanOneStateToken :: Bool
, -- More than one GST will be minted if this is set to true.
mintStateTokenWithName :: Bool
-- The token name of the GST won't be empty if this is set to true.
-- ^ Whether the output GST UTxO will carry the governor datum.
, presentWitness :: Bool
-- ^ Whether to spend the UTxO referenced by 'Governor.gstOutRef'.
, mintMoreThanOneStateToken :: Bool
-- ^ More than one GST will be minted if this is set to true.
, mintStateTokenWithName :: Bool
-- ^ The token name of the GST won't be empty if this is set to true.
}
--------------------------------------------------------------------------------