core/types: make Block.{ParentHash,SeedHash,MixDigest} []byte

There is no reason to keep them as ethutil.Bytes.
This commit is contained in:
Felix Lange 2015-03-13 14:36:15 +01:00
parent 31a95151c9
commit 9326541820
1 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ import (
type Header struct {
// Hash to the previous block
ParentHash ethutil.Bytes
ParentHash []byte
// Uncles of this block
UncleHash []byte
// The coin base address
@ -41,9 +41,9 @@ type Header struct {
// Extra data
Extra string
// SeedHash used for light client verification
SeedHash ethutil.Bytes
SeedHash []byte
// Mix digest for quick checking to prevent DOS
MixDigest ethutil.Bytes
MixDigest []byte
// Nonce
Nonce []byte
}