mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 01:43:47 +00:00
testnet
This commit is contained in:
parent
adfbd772d8
commit
8e8ceb622d
1 changed files with 5 additions and 5 deletions
|
|
@ -315,7 +315,7 @@ func DefaultGenesisBlock() *Genesis {
|
|||
Nonce: 69,
|
||||
ExtraData: hexutil.MustDecode("0x0000000000000000000000000000000000000000000000000000000000000000"),
|
||||
GasLimit: 3141592,
|
||||
Difficulty: big.NewInt(131072),
|
||||
Difficulty: big.NewInt(17179869184),
|
||||
Alloc: decodePrealloc(mainnetAllocData),
|
||||
}
|
||||
}
|
||||
|
|
@ -324,10 +324,10 @@ func DefaultGenesisBlock() *Genesis {
|
|||
func DefaultTestnetGenesisBlock() *Genesis {
|
||||
return &Genesis{
|
||||
Config: params.TestnetChainConfig,
|
||||
Nonce: 66,
|
||||
ExtraData: hexutil.MustDecode("0x3535353535353535353535353535353535353535353535353535353535353535"),
|
||||
GasLimit: 16777216,
|
||||
Difficulty: big.NewInt(1048576),
|
||||
Nonce: 64,
|
||||
ExtraData: hexutil.MustDecode("0x0000000000000000000000000000000000000000000000000000000000000000"),
|
||||
GasLimit: 3141592,
|
||||
Difficulty: big.NewInt(17179869184),
|
||||
Alloc: decodePrealloc(testnetAllocData),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue