forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
978 B
53 lines
978 B
10 years ago
|
package core
|
||
11 years ago
|
|
||
|
import (
|
||
10 years ago
|
"math/big"
|
||
|
|
||
10 years ago
|
"github.com/ethereum/go-ethereum/crypto"
|
||
10 years ago
|
"github.com/ethereum/go-ethereum/ethutil"
|
||
11 years ago
|
)
|
||
|
|
||
|
/*
|
||
|
* This is the special genesis block.
|
||
|
*/
|
||
|
|
||
|
var ZeroHash256 = make([]byte, 32)
|
||
|
var ZeroHash160 = make([]byte, 20)
|
||
10 years ago
|
var ZeroHash512 = make([]byte, 64)
|
||
10 years ago
|
var EmptyShaList = crypto.Sha3(ethutil.Encode([]interface{}{}))
|
||
10 years ago
|
var EmptyListRoot = crypto.Sha3(ethutil.Encode(""))
|
||
11 years ago
|
|
||
11 years ago
|
var GenesisHeader = []interface{}{
|
||
11 years ago
|
// Previous hash (none)
|
||
|
ZeroHash256,
|
||
10 years ago
|
// Empty uncles
|
||
10 years ago
|
EmptyShaList,
|
||
11 years ago
|
// Coinbase
|
||
|
ZeroHash160,
|
||
|
// Root state
|
||
10 years ago
|
EmptyShaList,
|
||
10 years ago
|
// tx root
|
||
|
EmptyListRoot,
|
||
|
// receipt root
|
||
|
EmptyListRoot,
|
||
10 years ago
|
// bloom
|
||
|
ZeroHash512,
|
||
11 years ago
|
// Difficulty
|
||
10 years ago
|
//ethutil.BigPow(2, 22),
|
||
10 years ago
|
big.NewInt(131072),
|
||
11 years ago
|
// Number
|
||
|
ethutil.Big0,
|
||
|
// Block upper gas bound
|
||
|
big.NewInt(1000000),
|
||
|
// Block gas used
|
||
|
ethutil.Big0,
|
||
11 years ago
|
// Time
|
||
11 years ago
|
ethutil.Big0,
|
||
11 years ago
|
// Extra
|
||
11 years ago
|
nil,
|
||
11 years ago
|
// Nonce
|
||
10 years ago
|
crypto.Sha3(big.NewInt(42).Bytes()),
|
||
11 years ago
|
}
|
||
|
|
||
11 years ago
|
var Genesis = []interface{}{GenesisHeader, []interface{}{}, []interface{}{}}
|