From ac539a93a0e7f286a8b95a9ba940d17329674f28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Hurlin?= Date: Fri, 29 Mar 2024 10:52:49 +0100 Subject: [PATCH] cardano-testnet: remove rewrite that became obsolete --- cardano-testnet/src/Testnet/Components/Configuration.hs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cardano-testnet/src/Testnet/Components/Configuration.hs b/cardano-testnet/src/Testnet/Components/Configuration.hs index 349047422b8..8f1c21251d0 100644 --- a/cardano-testnet/src/Testnet/Components/Configuration.hs +++ b/cardano-testnet/src/Testnet/Components/Configuration.hs @@ -115,14 +115,10 @@ createSPOGenesisAndFiles (NumPools numPoolNodes) era shelleyGenesis alonzoGenesi numStakeDelegators = 3 :: Int startTime = sgSystemStart shelleyGenesis - -- TODO: Remove this rewrite. + -- TODO: Remove this rewrite. -- 50 second epochs -- Epoch length should be "10 * k / f" where "k = securityParam, f = activeSlotsCoeff" H.rewriteJsonFile @Value inputGenesisShelleyFp $ \o -> o - -- TODO: remove rho and tau adjustment after https://github.com/IntersectMBO/cardano-api/pull/425 gets - -- integrated with newer cardano-api into node - & L.key "protocolParams" . L.key "rho" . L._Number .~ 0.1 - & L.key "protocolParams" . L.key "tau" . L._Number .~ 0.1 & L.key "securityParam" . L._Integer .~ 5 & L.key "updateQuorum" . L._Integer .~ 2