mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 01:43:47 +00:00
CLO testnet params
This commit is contained in:
parent
0ae5a75f43
commit
78ec7daed7
1 changed files with 5 additions and 8 deletions
|
|
@ -77,21 +77,18 @@ var (
|
||||||
// CallistoTestnetChainConfig contains the chain parameters to run a node on the Callisto test network.
|
// CallistoTestnetChainConfig contains the chain parameters to run a node on the Callisto test network.
|
||||||
CallistoTestnetChainConfig = &ChainConfig{
|
CallistoTestnetChainConfig = &ChainConfig{
|
||||||
ChainId: big.NewInt(7919),
|
ChainId: big.NewInt(7919),
|
||||||
HomesteadBlock: big.NewInt(0),
|
HomesteadBlock: big.NewInt(1),
|
||||||
DAOForkBlock: big.NewInt(0),
|
DAOForkBlock: big.NewInt(0),
|
||||||
DAOForkSupport: false,
|
DAOForkSupport: false,
|
||||||
EIP150Block: big.NewInt(0),
|
EIP150Block: big.NewInt(2),
|
||||||
EIP150Hash: common.HexToHash("0x0000000000000000000000000000000000000000000000000000000000000000"),
|
EIP150Hash: common.HexToHash("0x0000000000000000000000000000000000000000000000000000000000000000"),
|
||||||
EIP155Block: big.NewInt(3),
|
EIP155Block: big.NewInt(3),
|
||||||
EIP158Block: big.NewInt(0),
|
EIP158Block: big.NewInt(3),
|
||||||
ByzantiumBlock: big.NewInt(4),
|
ByzantiumBlock: big.NewInt(4),
|
||||||
CallistoBlock: big.NewInt(1),
|
CallistoBlock: big.NewInt(4),
|
||||||
CallistoTreasuryAddress: common.HexToAddress("0x74682Fc32007aF0b6118F259cBe7bCCC21641600"),
|
CallistoTreasuryAddress: common.HexToAddress("0x74682Fc32007aF0b6118F259cBe7bCCC21641600"),
|
||||||
|
|
||||||
Clique: &CliqueConfig{
|
Ethash: new(EthashConfig),
|
||||||
Period: 10,
|
|
||||||
Epoch: 30000,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// RinkebyChainConfig contains the chain parameters to run a node on the Rinkeby test network.
|
// RinkebyChainConfig contains the chain parameters to run a node on the Rinkeby test network.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue