This repository was archived by the owner on Nov 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1+ {-# LANGUAGE ImportQualifiedPost #-}
12{-# LANGUAGE LambdaCase #-}
23{-# LANGUAGE OverloadedStrings #-}
34{-# LANGUAGE PatternSynonyms #-}
@@ -66,7 +67,7 @@ module Ea.Genesis
6667import Control.Lens
6768import Control.Monad
6869
69- import Data.Text
70+ import Data.Text qualified as T
7071import Data.Word
7172
7273import Chainweb.Graph
@@ -77,7 +78,6 @@ import Chainweb.Version.RecapDevelopment
7778import Chainweb.Version.Mainnet
7879import Chainweb.Version.Testnet04
7980
80-
8181-- ---------------------------------------------------------------------- --
8282-- Genesis Tx Data
8383
@@ -108,7 +108,7 @@ chainIdRangeTag (ChainIdRange l u)
108108data Genesis = Genesis
109109 { _version :: ChainwebVersion
110110 -- ^ chainweb version (e.g. Testnet04)
111- , _tag :: Text
111+ , _tag :: T. Text
112112 -- ^ Module name tag
113113 , _txChainIds :: ChainIdRange
114114 -- ^ chain id
Original file line number Diff line number Diff line change 636636 :: LogLevel
637637 -> ChainwebVersion
638638 -> Natural
639+ -- ^ number of nodes
639640 -> Seconds
640641 -> RocksDb
641642 -> FilePath
Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ testVersionTemplate v = v
162162 & versionBootstraps .~ [testBootstrapPeerInfos]
163163 & versionVerifierPluginNames .~ AllChains (Bottom (minBound , mempty ))
164164 & versionServiceDate .~ Nothing
165+ & versionForkNumber .~ 0
165166
166167-- | A test version without Pact or PoW, with only one chain graph.
167168barebonesTestVersion :: ChainGraph -> ChainwebVersion
You can’t perform that action at this time.
0 commit comments