Update fork block num

pull/1493/head
Rongjian Lan 5 years ago
parent 2d51ba0ee2
commit d2d0bdaf3a
  1. 12
      internal/params/config.go

@ -17,17 +17,17 @@ var (
// MainnetChainConfig is the chain parameters to run a node on the main network. // MainnetChainConfig is the chain parameters to run a node on the main network.
MainnetChainConfig = &ChainConfig{ MainnetChainConfig = &ChainConfig{
ChainID: big.NewInt(1), ChainID: big.NewInt(1),
CrossLinkBlock: big.NewInt(589824), // 36 * 2^14 CrossLinkBlock: big.NewInt(655360), // 40 * 2^14
EIP155Block: big.NewInt(589824), // 36 * 2^14 EIP155Block: big.NewInt(655360), // 40 * 2^14
S3Block: big.NewInt(589824), // 36 * 2^14 S3Block: big.NewInt(655360), // 40 * 2^14
} }
// TestnetChainConfig contains the chain parameters to run a node on the harmony test network. // TestnetChainConfig contains the chain parameters to run a node on the harmony test network.
TestnetChainConfig = &ChainConfig{ TestnetChainConfig = &ChainConfig{
ChainID: big.NewInt(2), ChainID: big.NewInt(2),
CrossLinkBlock: big.NewInt(0), // 36 * 2^14 CrossLinkBlock: big.NewInt(0),
EIP155Block: big.NewInt(0), // 36 * 2^14 EIP155Block: big.NewInt(0),
S3Block: big.NewInt(0), // 36 * 2^14 S3Block: big.NewInt(0),
} }
// AllProtocolChanges ... // AllProtocolChanges ...

Loading…
Cancel
Save