Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Remove field accessors from GenesisConfiguration #3140

Merged
merged 1 commit into from
Jun 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions core/src/Pos/Core/Configuration/Core.hs
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ data GenesisConfiguration
-- | Genesis from a 'GenesisSpec'.
= GCSpec !GenesisSpec
-- | 'GenesisData' is stored in a file.
| GCSrc { gcsFile :: !FilePath
| GCSrc !FilePath
-- ^ Path to file where 'GenesisData' is stored. Must be
-- in JSON, not necessary canonical.
, gcsHash :: !(Hash Raw)
!(Hash Raw)
-- ^ Hash of canonically encoded 'GenesisData'.
}

deriving (Show)

data CoreConfiguration = CoreConfiguration
Expand Down