From f674dcafb0e981ec505134e77ff12f0b7cda1520 Mon Sep 17 00:00:00 2001 From: Leo Chen Date: Mon, 22 Jul 2019 10:38:34 +0000 Subject: [PATCH] [test] reduce blocks per epoch for testnet Signed-off-by: Leo Chen --- internal/configs/sharding/testnet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/configs/sharding/testnet.go b/internal/configs/sharding/testnet.go index 261a77d0e..f398f9379 100644 --- a/internal/configs/sharding/testnet.go +++ b/internal/configs/sharding/testnet.go @@ -30,7 +30,7 @@ func (testnetSchedule) InstanceForEpoch(epoch *big.Int) Instance { func (testnetSchedule) BlocksPerEpoch() uint64 { // 8 seconds per block, roughly 86400 blocks, around one day - return 10800 + return 60 } var testnetReshardingEpoch = []*big.Int{big.NewInt(0), big.NewInt(testnetV1Epoch), big.NewInt(testnetV2Epoch)}