diff --git a/errors.go b/errors.go index e0bd780..f086b73 100644 --- a/errors.go +++ b/errors.go @@ -5,6 +5,6 @@ import "errors" var ( ErrIsDir = errors.New("this dag node is a directory") ErrNotFile = errors.New("this dag node is not a regular file") - ErrOffline = errors.New("this action must be run in online mode, try running 'ipfs daemon' first") + ErrOffline = errors.New("this action must be run in online mode, try running 'btfs daemon' first") ErrNotSupported = errors.New("operation not supported") )