aboutsummaryrefslogtreecommitdiffstats
path: root/core/types
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-15 06:37:21 +0800
committerobscuren <geffobscura@gmail.com>2015-03-15 06:37:21 +0800
commitd9966d615813130c8d31b3b10a59d43d00fd9943 (patch)
treeb5a196dd1ef20050160eb384c876ccaba1c4eebf /core/types
parent12cee1377f8795608bae3cad38ee22c032b3b865 (diff)
parent67f8f83a1ba2a4dbd0f6f2fd075bb440f5c420ad (diff)
downloaddexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.gz
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.bz2
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.lz
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.xz
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.zst
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.zip
merge
Diffstat (limited to 'core/types')
-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
}