The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
woop/internal/configs/sharding/testnet.go

24 lines
560 B

package shardingconfig
import (
"math/big"
"github.com/harmony-one/harmony/internal/genesis"
)
// TestnetSchedule is the long-running public testnet sharding
// configuration schedule.
var TestnetSchedule testnetSchedule
type testnetSchedule struct{}
func (testnetSchedule) InstanceForEpoch(epoch *big.Int) Instance {
switch {
default: // genesis
return testnetV0
}
}
var testnetReshardingEpoch = make([]*big.Int, 0)
var testnetV0 = MustNewInstance(2, 150, 150, genesis.TNHarmonyAccounts, genesis.FoundationalNodeAccounts, testnetReshardingEpoch)