Skip to content
Open
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
7 changes: 5 additions & 2 deletions cardano-node/src/Cardano/Node/Protocol/Cardano.hs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ mkSomeConsensusProtocolCardano NodeByronProtocolConfiguration {
npcTestAlonzoHardForkAtEpoch,
npcTestBabbageHardForkAtEpoch,
npcTestConwayHardForkAtEpoch,
npcTestDijkstraHardForkAtEpoch
npcTestDijkstraHardForkAtEpoch,
npcExperimentalHardForksEnabled
}
checkpointsConfiguration
files = do
Expand Down Expand Up @@ -177,7 +178,9 @@ mkSomeConsensusProtocolCardano NodeByronProtocolConfiguration {
shelleyGenesisHash,
shelleyBasedLeaderCredentials = shelleyLeaderCredentials
}
, Consensus.cardanoProtocolVersion = ProtVer (natVersion @10) 7
, Consensus.cardanoProtocolVersion = if npcExperimentalHardForksEnabled
then ProtVer (natVersion @11) 0
else ProtVer (natVersion @10) 7
-- The remaining arguments specify the parameters needed to transition between two eras
, Consensus.cardanoLedgerTransitionConfig =
Ledger.mkLatestTransitionConfig
Expand Down
Loading