diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-15 06:37:21 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-15 06:37:21 +0800 |
commit | d9966d615813130c8d31b3b10a59d43d00fd9943 (patch) | |
tree | b5a196dd1ef20050160eb384c876ccaba1c4eebf /core | |
parent | 12cee1377f8795608bae3cad38ee22c032b3b865 (diff) | |
parent | 67f8f83a1ba2a4dbd0f6f2fd075bb440f5c420ad (diff) | |
download | dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.gz dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.zst dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.zip |
merge
Diffstat (limited to 'core')
-rw-r--r-- | core/types/block.go | 4 |
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 } |