add missing module headers
This commit is contained in:
parent
f0d0188812
commit
4b3003fdc8
7 changed files with 43 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
{- |
|
{- |
|
||||||
Module : Spec.Sample.Governor
|
Module : Sample.Governor
|
||||||
Maintainer : connor@mlabs.city
|
Maintainer : connor@mlabs.city
|
||||||
Description: Sample based testing for Governor utxos
|
Description: Sample based testing for Governor utxos
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
{- |
|
||||||
|
Module : Sample.Proposal.Advance
|
||||||
|
Maintainer : connor@mlabs.city
|
||||||
|
Description: Generate sample data for testing the functionalities of advancing proposals
|
||||||
|
|
||||||
|
Sample and utilities for testing the functionalities of advancing proposals.
|
||||||
|
-}
|
||||||
module Sample.Proposal.Advance (
|
module Sample.Proposal.Advance (
|
||||||
advanceToNextStateInTimeParameters,
|
advanceToNextStateInTimeParameters,
|
||||||
advanceToFailedStateDueToTimeoutParameters,
|
advanceToFailedStateDueToTimeoutParameters,
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
{- |
|
||||||
|
Module : Sample.Proposal.Cosign
|
||||||
|
Maintainer : connor@mlabs.city
|
||||||
|
Description: Generate sample data for testing the functionalities of cosigning proposals
|
||||||
|
|
||||||
|
Sample and utilities for testing the functionalities of cosigning proposals.
|
||||||
|
-}
|
||||||
module Sample.Proposal.Cosign (
|
module Sample.Proposal.Cosign (
|
||||||
Parameters (..),
|
Parameters (..),
|
||||||
validCosignNParameters,
|
validCosignNParameters,
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
{- |
|
||||||
|
Module : Sample.Proposal.Create
|
||||||
|
Maintainer : connor@mlabs.city
|
||||||
|
Description: Generate sample data for testing the functionalities of creating proposals
|
||||||
|
|
||||||
|
Sample and utilities for testing the functionalities of creating proposals.
|
||||||
|
-}
|
||||||
module Sample.Proposal.Create (
|
module Sample.Proposal.Create (
|
||||||
Parameters (..),
|
Parameters (..),
|
||||||
mkTestTree,
|
mkTestTree,
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
{- |
|
||||||
|
Module : Sample.Proposal.Shared
|
||||||
|
Maintainer : connor@mlabs.city
|
||||||
|
Description: Shared constants for propsoal samples
|
||||||
|
|
||||||
|
Shared constants for propsoal samples.
|
||||||
|
-}
|
||||||
module Sample.Proposal.Shared (proposalTxRef, stakeTxRef) where
|
module Sample.Proposal.Shared (proposalTxRef, stakeTxRef) where
|
||||||
|
|
||||||
import PlutusLedgerApi.V1 (TxId)
|
import PlutusLedgerApi.V1 (TxId)
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
{- |
|
||||||
|
Module : Sample.Proposal.UnlockStake
|
||||||
|
Maintainer : connor@mlabs.city
|
||||||
|
Description: Generate sample data for testing the functionalities of unlocking stake and retracting votes
|
||||||
|
|
||||||
|
Sample and utilities for testing the functionalities of unlocking stake and retracting votes
|
||||||
|
-}
|
||||||
module Sample.Proposal.UnlockStake (
|
module Sample.Proposal.UnlockStake (
|
||||||
StakeRole (..),
|
StakeRole (..),
|
||||||
Parameters (..),
|
Parameters (..),
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
{- |
|
||||||
|
Module : Sample.Proposal.Vote
|
||||||
|
Maintainer : connor@mlabs.city
|
||||||
|
Description: Generate sample data for testing the functionalities of voting on proposals.
|
||||||
|
|
||||||
|
Sample and utilities for testing the functionalities of voting on proposals.
|
||||||
|
-}
|
||||||
module Sample.Proposal.Vote (
|
module Sample.Proposal.Vote (
|
||||||
validVoteParameters,
|
validVoteParameters,
|
||||||
mkTestTree,
|
mkTestTree,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue