From 98077913fc5462c740ee31aad407c22c28c4b824 Mon Sep 17 00:00:00 2001 From: Aniket Deshpande Date: Fri, 18 Aug 2023 14:11:52 +0530 Subject: [PATCH] Fix cardano-ledger-test failure --- .../src/Test/Cardano/Ledger/Examples/ConwayFeatures.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/cardano-ledger-test/src/Test/Cardano/Ledger/Examples/ConwayFeatures.hs b/libs/cardano-ledger-test/src/Test/Cardano/Ledger/Examples/ConwayFeatures.hs index 1133b17ac43..ad7a56616be 100644 --- a/libs/cardano-ledger-test/src/Test/Cardano/Ledger/Examples/ConwayFeatures.hs +++ b/libs/cardano-ledger-test/src/Test/Cardano/Ledger/Examples/ConwayFeatures.hs @@ -145,7 +145,7 @@ newConstitutionProposal :: forall era. Scriptic era => Proof era -> ProposalProc newConstitutionProposal pf = ProposalProcedure (Coin proposalDeposit) - (RewardAcnt Mainnet (KeyHashObj (stakeKeyHash pf))) + (RewardAcnt Testnet (KeyHashObj (stakeKeyHash pf))) (NewConstitution SNothing (proposedConstitution @era)) (Anchor (fromJust $ textToUrl "new.constitution.com") (SLE.mkDummySafeHash Proxy 1)) @@ -158,7 +158,7 @@ anotherConstitutionProposal :: anotherConstitutionProposal pf prevGovActionId = ProposalProcedure (Coin proposalDeposit) - (RewardAcnt Mainnet (KeyHashObj (stakeKeyHash pf))) + (RewardAcnt Testnet (KeyHashObj (stakeKeyHash pf))) ( NewConstitution (SJust (PrevGovActionId prevGovActionId)) (Constitution (SLE.mkDummyAnchor 2) SNothing)