File tree 1 file changed +5
-2
lines changed
cardano-node/src/Cardano/Node/Protocol
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ mkSomeConsensusProtocolCardano NodeByronProtocolConfiguration {
90
90
npcConwayGenesisFileHash
91
91
}
92
92
NodeHardForkProtocolConfiguration {
93
- -- npcTestEnableDevelopmentHardForkEras,
93
+ npcTestEnableDevelopmentHardForkEras,
94
94
-- During testing of the Alonzo era, we conditionally declared that we
95
95
-- knew about the Alonzo era. We do so only when a config option for
96
96
-- testing development/unstable eras is used. This lets us include
@@ -233,7 +233,10 @@ mkSomeConsensusProtocolCardano NodeByronProtocolConfiguration {
233
233
-- version that this node will declare that it understands, when it
234
234
-- is in the Babbage era. Since Babbage is currently the last known
235
235
-- protocol version then this is also the Babbage protocol version.
236
- Praos. conwayProtVer = ProtVer 9 0 ,
236
+ Praos. conwayProtVer =
237
+ if npcTestEnableDevelopmentHardForkEras
238
+ then ProtVer 9 0
239
+ else ProtVer 8 0 ,
237
240
Praos. conwayMaxTxCapacityOverrides =
238
241
TxLimits. mkOverrides TxLimits. noOverridesMeasure
239
242
}
You can’t perform that action at this time.
0 commit comments