From b70fc6864f8dd09cf95d05eea06a82bdf6fbb3b8 Mon Sep 17 00:00:00 2001 From: Rongjian Lan Date: Wed, 5 Feb 2020 11:18:23 -0800 Subject: [PATCH] update testnet epochs (#2189) --- internal/params/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/params/config.go b/internal/params/config.go index 12f89056a..3854f5746 100644 --- a/internal/params/config.go +++ b/internal/params/config.go @@ -36,9 +36,9 @@ var ( TestnetChainConfig = &ChainConfig{ ChainID: TestnetChainID, CrossTxEpoch: big.NewInt(0), - CrossLinkEpoch: big.NewInt(5256), - StakingEpoch: big.NewInt(5328), // around 2019-12-06T05:46:17Z - PreStakingEpoch: big.NewInt(5256), // around 2019-12-05T17:46:17Z + CrossLinkEpoch: big.NewInt(3), + StakingEpoch: big.NewInt(4), + PreStakingEpoch: big.NewInt(2), EIP155Epoch: big.NewInt(0), S3Epoch: big.NewInt(0), }