Skip to content

Commit

Permalink
Document fields of GenesisCreateTestNetDataCmdArgs
Browse files Browse the repository at this point in the history
  • Loading branch information
smelc committed Dec 4, 2023
1 parent dacb077 commit 4b0dbda
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions cardano-cli/src/Cardano/CLI/EraBased/Commands/Genesis.hs
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,17 @@ data GenesisCreateStakedCmdArgs = GenesisCreateStakedCmdArgs
} deriving Show

data GenesisCreateTestNetDataCmdArgs = GenesisCreateTestNetDataCmdArgs
{ specShelley :: !(Maybe FilePath)
, numGenesisKeys :: !Word
, numPools :: !Word
, numStakeDelegators :: !Word
, numStuffedUtxo :: !Word
, numUtxoKeys :: !Word
, supply :: !(Maybe Lovelace)
, supplyDelegated :: !(Maybe Lovelace)
, networkId :: !NetworkId
, systemStart :: !(Maybe SystemStart)
, outputDir :: !FilePath
{ specShelley :: !(Maybe FilePath) -- ^ Path to the @genesis-shelley@ file to use. If unspecified, a default one will be used if omitted.
, numGenesisKeys :: !Word -- ^ The number of genesis keys credentials to create and write to disk.
, numPools :: !Word -- ^ The number of stake pools credentials to create and write to disk.
, numStakeDelegators :: !Word -- ^ The number of delegators to pools to create and write to disk.
, numStuffedUtxo :: !Word -- ^ The number of UTxO accounts to make. They are "stuffed" because the credentials are not written to disk.
, numUtxoKeys :: !Word -- ^ The number of UTxO credentials to create and write to disk.
, supply :: !(Maybe Lovelace) -- ^ The number of Lovelace to distribute over initial, non-delegating stake holders.
, supplyDelegated :: !(Maybe Lovelace) -- ^ The number of Lovelace to distribute over delegating stake holders.
, networkId :: !NetworkId -- ^ The network ID to use.
, systemStart :: !(Maybe SystemStart) -- ^ The genesis start time.
, outputDir :: !FilePath -- ^ Directory where to write credentials and files.
} deriving Show

data GenesisKeyGenGenesisCmdArgs = GenesisKeyGenGenesisCmdArgs
Expand Down

0 comments on commit 4b0dbda

Please sign in to comment.