Skip to content

Commit d7b0c91

Browse files
committed
Fix 8.10
1 parent a4ed7d3 commit d7b0c91

File tree

1 file changed

+4
-4
lines changed
  • ouroboros-consensus-cardano/src/unstable-cardano-tools/Cardano/Tools/DBAnalyser/Block

1 file changed

+4
-4
lines changed

ouroboros-consensus-cardano/src/unstable-cardano-tools/Cardano/Tools/DBAnalyser/Block/Cardano.hs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ instance HasProtocolInfo (CardanoBlock StandardCrypto) where
135135
genesisConway <- either (error . show) return =<<
136136
Aeson.eitherDecodeFileStrict' (conwayGenesisPath cc)
137137

138-
let ledgerTransitionConfig =
138+
let transCfg =
139139
L.mkLatestTransitionConfig genesisShelley genesisAlonzo genesisConway
140140

141141
initialNonce <- case shelleyGenesisHash cc of
@@ -152,7 +152,7 @@ instance HasProtocolInfo (CardanoBlock StandardCrypto) where
152152
$ mkCardanoProtocolInfo
153153
genesisByron
154154
threshold
155-
ledgerTransitionConfig
155+
transCfg
156156
initialNonce
157157
(cfgHardForkTriggers cc)
158158

@@ -275,7 +275,7 @@ mkCardanoProtocolInfo ::
275275
-> Nonce
276276
-> CardanoHardForkTriggers
277277
-> ProtocolInfo (CardanoBlock StandardCrypto)
278-
mkCardanoProtocolInfo genesisByron signatureThreshold transitionConfig initialNonce hardForkTriggers =
278+
mkCardanoProtocolInfo genesisByron signatureThreshold transitionConfig initialNonce triggers =
279279
fst $ protocolInfoCardano @_ @IO
280280
(CardanoProtocolParams
281281
ProtocolParamsByron {
@@ -317,7 +317,7 @@ mkCardanoProtocolInfo genesisByron signatureThreshold transitionConfig initialNo
317317
conwayProtVer = ProtVer (SL.natVersion @9) 0
318318
, conwayMaxTxCapacityOverrides = Mempool.mkOverrides Mempool.noOverridesMeasure
319319
}
320-
hardForkTriggers
320+
triggers
321321
transitionConfig
322322
)
323323
where

0 commit comments

Comments
 (0)