diff options
author | Felix Lange <fjl@twurst.com> | 2015-03-18 20:38:47 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-03-18 20:38:47 +0800 |
commit | a59dd393e71cc52b1f96973aef884af619166f38 (patch) | |
tree | b52cfbbb41a9fffaaefa2bc8913f578480cff160 /core/genesis.go | |
parent | b5b83db450974f70f4bc25f280cc6ec9193f8e19 (diff) | |
download | dexon-a59dd393e71cc52b1f96973aef884af619166f38.tar.gz dexon-a59dd393e71cc52b1f96973aef884af619166f38.tar.zst dexon-a59dd393e71cc52b1f96973aef884af619166f38.zip |
core: fix tests
Diffstat (limited to 'core/genesis.go')
-rw-r--r-- | core/genesis.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/genesis.go b/core/genesis.go index 70845b502..3e00533ae 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -8,7 +8,6 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" - "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/state" ) @@ -19,9 +18,6 @@ import ( var ZeroHash256 = make([]byte, 32) var ZeroHash160 = make([]byte, 20) var ZeroHash512 = make([]byte, 64) -var EmptyShaList = crypto.Sha3(common.Encode([]interface{}{})) -var EmptyListRoot = crypto.Sha3(common.Encode("")) - var GenesisDiff = big.NewInt(131072) var GenesisGasLimit = big.NewInt(3141592) |