Commit ee3be129 authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

set util.ErrNotFound = ds.ErrNotFound

parent c1219303
......@@ -8,6 +8,7 @@ import (
"path/filepath"
"strings"
ds "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/datastore.go"
b58 "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-base58"
mh "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multihash"
)
......@@ -26,7 +27,7 @@ var ErrTimeout = errors.New("Error: Call timed out.")
var ErrSearchIncomplete = errors.New("Error: Search Incomplete.")
// ErrNotFound is returned when a search fails to find anything
var ErrNotFound = errors.New("Error: Not Found.")
var ErrNotFound = ds.ErrNotFound
// Key is a string representation of multihash for use with maps.
type Key string
......
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