Update genesis

This commit is contained in:
Yohan Graterol 2017-12-02 21:55:06 -05:00
parent 9c6ba75e95
commit 6b776dba6e
2 changed files with 12 additions and 0 deletions

View file

@ -330,6 +330,17 @@ func DefaultTestnetGenesisBlock() *Genesis {
} }
} }
// DefaultCallistoTestnetGenesisBlock
func DefaultCallistoTestnetGenesisBlock() *Genesis {
return &Genesis{
Config: params.CallistoTestnetChainConfig,
ExtraData: hexutil.MustDecode("0x000000000000000000000000000000000000000000000000000000000000000073dcf82e65a05dab02da9d899ae472487dfc99bb0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"),
GasLimit: 4700000,
Difficulty: big.NewInt(1),
Alloc: decodePrealloc(callistoTestnetAllocData),
}
}
// DefaultRinkebyGenesisBlock returns the Rinkeby network genesis block. // DefaultRinkebyGenesisBlock returns the Rinkeby network genesis block.
func DefaultRinkebyGenesisBlock() *Genesis { func DefaultRinkebyGenesisBlock() *Genesis {
return &Genesis{ return &Genesis{

File diff suppressed because one or more lines are too long