We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02c9788 commit 8cfbeffCopy full SHA for 8cfbeff
cardano-testnet/src/Testnet/Babbage.hs
@@ -186,7 +186,12 @@ babbageTestnet testnetOptions H.Conf {..} = do
186
. HM.insert "minFeeB" (toJSON @Int 155381)
187
. HM.insert "minUTxOValue" (toJSON @Int 1000000)
188
. HM.insert "decentralisationParam" (toJSON @Double 0.7)
189
- . HM.insert "major" (toJSON @Int 7)
+ . flip HM.adjust "protocolParams"
190
+ ( J.rewriteObject
191
+ ( flip HM.adjust "protocolVersion"
192
+ ( J.rewriteObject ( HM.insert "major" (toJSON @Int 8)))
193
+ )
194
195
. HM.insert "rho" (toJSON @Double 0.1)
196
. HM.insert "tau" (toJSON @Double 0.1)
197
. HM.insert "updateQuorum" (toJSON @Int 2)
0 commit comments