Fixed genesis
This commit is contained in:
parent
92c7aca817
commit
d87aa24885
@ -15,6 +15,7 @@ var ZeroHash256 = make([]byte, 32)
|
|||||||
var ZeroHash160 = make([]byte, 20)
|
var ZeroHash160 = make([]byte, 20)
|
||||||
var ZeroHash512 = make([]byte, 64)
|
var ZeroHash512 = make([]byte, 64)
|
||||||
var EmptyShaList = crypto.Sha3(ethutil.Encode([]interface{}{}))
|
var EmptyShaList = crypto.Sha3(ethutil.Encode([]interface{}{}))
|
||||||
|
var EmptyListRoot = crypto.Sha3(ethutil.Encode(""))
|
||||||
|
|
||||||
var GenesisHeader = []interface{}{
|
var GenesisHeader = []interface{}{
|
||||||
// Previous hash (none)
|
// Previous hash (none)
|
||||||
@ -25,10 +26,10 @@ var GenesisHeader = []interface{}{
|
|||||||
ZeroHash160,
|
ZeroHash160,
|
||||||
// Root state
|
// Root state
|
||||||
EmptyShaList,
|
EmptyShaList,
|
||||||
// tx sha
|
// tx root
|
||||||
EmptyShaList,
|
EmptyListRoot,
|
||||||
// receipt list
|
// receipt root
|
||||||
EmptyShaList,
|
EmptyListRoot,
|
||||||
// bloom
|
// bloom
|
||||||
ZeroHash512,
|
ZeroHash512,
|
||||||
// Difficulty
|
// Difficulty
|
||||||
|
Loading…
Reference in New Issue
Block a user