@@ -619,9 +619,9 @@ votingSpec =
619
619
isDRepAccepted addCCGaid `shouldReturn` False
620
620
getLastEnactedCommittee `shouldReturn` SNothing
621
621
-- Bump up the UTxO delegated
622
- -- to barely make the threshold (51 %! 100)
622
+ -- to barely make the threshold (65 %! 100)
623
623
stakingKP1 <- lookupKeyPair stakingKH1
624
- _ <- sendCoinTo (mkAddr (paymentKP1, stakingKP1)) (inject $ Coin 200_000_000 )
624
+ _ <- sendCoinTo (mkAddr (paymentKP1, stakingKP1)) (inject $ Coin 858_000_000 )
625
625
passNEpochs 2
626
626
-- The same vote should now successfully ratify the proposal
627
627
getLastEnactedCommittee `shouldReturn` SJust (GovPurposeId addCCGaid)
@@ -642,11 +642,11 @@ votingSpec =
642
642
isDRepAccepted addCCGaid `shouldReturn` False
643
643
getLastEnactedCommittee `shouldReturn` SNothing
644
644
-- Add to the rewards of the delegator to this DRep
645
- -- to barely make the threshold (51 %! 100)
645
+ -- to barely make the threshold (61 %! 100)
646
646
modifyNES $
647
647
nesEsL . epochStateUMapL
648
648
%~ UM. adjust
649
- (\ (UM. RDPair r d) -> UM. RDPair (r <> UM. CompactCoin 200_000_000 ) d)
649
+ (\ (UM. RDPair r d) -> UM. RDPair (r <> UM. CompactCoin 858_000_000 ) d)
650
650
staking1
651
651
. UM. RewDepUView
652
652
passNEpochs 2
@@ -655,7 +655,7 @@ votingSpec =
655
655
it " Rewards contribute to active voting stake even in the absence of StakeDistr" $ whenPostBootstrap $ do
656
656
let govActionLifetime = 5
657
657
govActionDeposit = Coin 1_000_000
658
- poolDeposit = Coin 200_000
658
+ poolDeposit = Coin 858_000
659
659
-- Only modify the applicable thresholds
660
660
modifyPParams $ \ pp ->
661
661
pp
@@ -687,7 +687,7 @@ votingSpec =
687
687
isDRepAccepted addCCGaid `shouldReturn` False
688
688
getLastEnactedCommittee `shouldReturn` SNothing
689
689
-- Increase the rewards of the delegator to this DRep
690
- -- to barely make the threshold (51 %! 100)
690
+ -- to barely make the threshold (65 %! 100)
691
691
registerAndRetirePoolToMakeReward $ KeyHashObj stakingKH1
692
692
lookupReward (KeyHashObj stakingKH1) `shouldReturn` poolDeposit <> govActionDeposit
693
693
isDRepAccepted addCCGaid `shouldReturn` True
@@ -697,7 +697,7 @@ votingSpec =
697
697
describe " Proposal deposits contribute to active voting stake" $ do
698
698
it " Directly" $ whenPostBootstrap $ do
699
699
-- Only modify the applicable thresholds
700
- modifyPParams $ ppGovActionDepositL .~ Coin 600_000
700
+ modifyPParams $ ppGovActionDepositL .~ Coin 1_000_000
701
701
-- Setup DRep delegation without stake #1
702
702
(drepKH1, stakingKH1) <- setupDRepWithoutStake
703
703
-- Setup DRep delegation #2
0 commit comments