aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/block.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/types/block.go')
-rw-r--r--core/types/block.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/types/block.go b/core/types/block.go
index 50973c804..ba6ef6014 100644
--- a/core/types/block.go
+++ b/core/types/block.go
@@ -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,7 +41,7 @@ type Header struct {
// Extra data
Extra string
// Mix digest for quick checking to prevent DOS
- MixDigest ethutil.Bytes
+ MixDigest []byte
// Nonce
Nonce []byte
}