Update genesis.go

This commit is contained in:
etherinc 2018-02-13 01:22:34 +05:30 committed by GitHub
parent 0d0468b132
commit 949794c2d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -320,7 +320,7 @@ func DefaultGenesisBlock() *Genesis {
Nonce: 66,
ExtraData: hexutil.MustDecode("0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa"),
GasLimit: 5000,
Difficulty: big.NewInt(17179869184),
Difficulty: big.NewInt(1),
Alloc: GenesisAlloc{
addr1: {Balance: big.NewInt(50000000000000000000)},
addr2: {Balance: big.NewInt(20000000000000000000)},
@ -335,7 +335,7 @@ func DefaultTestnetGenesisBlock() *Genesis {
Nonce: 66,
ExtraData: hexutil.MustDecode("0x3535353535353535353535353535353535353535353535353535353535353535"),
GasLimit: 16777216,
Difficulty: big.NewInt(1048576),
Difficulty: big.NewInt(1),
Alloc: decodePrealloc(testnetAllocData),
}
}