quorum/ethchain/genesis.go

49 lines
894 B
Go
Raw Normal View History

2014-02-14 14:56:09 -08:00
package ethchain
import (
"math/big"
"github.com/ethereum/eth-go/ethcrypto"
2014-02-14 14:56:09 -08:00
"github.com/ethereum/eth-go/ethutil"
)
/*
* This is the special genesis block.
*/
var ZeroHash256 = make([]byte, 32)
var ZeroHash160 = make([]byte, 20)
2014-10-08 03:06:39 -07:00
var EmptyShaList = ethcrypto.Sha3(ethutil.Encode([]interface{}{}))
2014-02-14 14:56:09 -08:00
2014-02-18 07:40:58 -08:00
var GenesisHeader = []interface{}{
2014-02-14 14:56:09 -08:00
// Previous hash (none)
ZeroHash256,
// Sha of uncles
2014-10-08 03:06:39 -07:00
ethcrypto.Sha3(ethutil.Encode([]interface{}{})),
2014-02-14 14:56:09 -08:00
// Coinbase
ZeroHash160,
// Root state
"",
2014-05-20 06:02:46 -07:00
// tx sha
"",
2014-02-14 14:56:09 -08:00
// Difficulty
//ethutil.BigPow(2, 22),
2014-08-21 11:13:26 -07:00
big.NewInt(131072),
2014-05-20 05:29:52 -07:00
// Number
ethutil.Big0,
// Block minimum gas price
ethutil.Big0,
// Block upper gas bound
big.NewInt(1000000),
// Block gas used
ethutil.Big0,
2014-02-14 14:56:09 -08:00
// Time
2014-05-20 05:29:52 -07:00
ethutil.Big0,
2014-02-14 14:56:09 -08:00
// Extra
2014-05-20 05:29:52 -07:00
nil,
2014-02-14 14:56:09 -08:00
// Nonce
2014-10-08 03:06:39 -07:00
ethcrypto.Sha3(big.NewInt(42).Bytes()),
2014-02-14 14:56:09 -08:00
}
2014-02-18 07:40:58 -08:00
var Genesis = []interface{}{GenesisHeader, []interface{}{}, []interface{}{}}