Commit bf963fc3 authored by Jakub Sztandera's avatar Jakub Sztandera

blocks: rename errWrongHash to ErrWrongHash

License: MIT
Signed-off-by: default avatarJakub Sztandera <kubuxu@protonmail.ch>
parent 7614cdad
...@@ -11,7 +11,7 @@ import ( ...@@ -11,7 +11,7 @@ import (
u "gx/ipfs/QmZNVWh8LLjAavuQ2JXuFmuYH3C11xo988vSgp7UQrTRj1/go-ipfs-util" u "gx/ipfs/QmZNVWh8LLjAavuQ2JXuFmuYH3C11xo988vSgp7UQrTRj1/go-ipfs-util"
) )
var errWrongHash = errors.New("Data did not match given hash!") var ErrWrongHash = errors.New("Data did not match given hash!")
type Block interface { type Block interface {
Multihash() mh.Multihash Multihash() mh.Multihash
...@@ -39,7 +39,7 @@ func NewBlockWithHash(data []byte, h mh.Multihash) (*BasicBlock, error) { ...@@ -39,7 +39,7 @@ func NewBlockWithHash(data []byte, h mh.Multihash) (*BasicBlock, error) {
if u.Debug { if u.Debug {
chk := u.Hash(data) chk := u.Hash(data)
if string(chk) != string(h) { if string(chk) != string(h) {
return nil, errWrongHash return nil, ErrWrongHash
} }
} }
return &BasicBlock{data: data, multihash: h}, nil return &BasicBlock{data: data, multihash: h}, nil
......
...@@ -89,7 +89,7 @@ func TestManualHash(t *testing.T) { ...@@ -89,7 +89,7 @@ func TestManualHash(t *testing.T) {
u.Debug = true u.Debug = true
block, err = NewBlockWithHash(data, hash) block, err = NewBlockWithHash(data, hash)
if err != errWrongHash { if err != ErrWrongHash {
t.Fatal(err) t.Fatal(err)
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment