Skip to content

Commit

Permalink
Update testnet internal vote power back to 90%
Browse files Browse the repository at this point in the history
  • Loading branch information
sophoah committed May 29, 2024
1 parent a7560fe commit a8a2a13
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions internal/configs/sharding/testnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ const (

func (ts testnetSchedule) InstanceForEpoch(epoch *big.Int) Instance {
switch {
case epoch.Cmp(big.NewInt(3388)) >= 0: // one time fix for devnet shard 1 down, estimated 30 May 7:50AM UTC
return testnetV6_1
case params.TestnetChainConfig.IsTestnetExternalEpoch(epoch):
return testnetV6
case params.TestnetChainConfig.IsHIP30(epoch):
Expand Down Expand Up @@ -179,4 +181,12 @@ var (
hip30CollectionAddressTestnet, testnetReshardingEpoch,
TestnetSchedule.BlocksPerEpoch(),
)
testnetV6_1 = MustNewInstance(
2, 30, 0, 0,
numeric.MustNewDecFromStr("0.9"), genesis.TNHarmonyAccountsV1,
genesis.TNFoundationalAccounts, emptyAllowlist,
feeCollectorsTestnet, numeric.MustNewDecFromStr("0.25"),
hip30CollectionAddressTestnet, testnetReshardingEpoch,
TestnetSchedule.BlocksPerEpoch(),
)
)

0 comments on commit a8a2a13

Please sign in to comment.