address review comments.

This commit is contained in:
Raúl Kripalani
2021-02-28 19:44:02 +00:00
parent 35d1e3d1e0
commit 8601e5da3a
3 changed files with 9 additions and 5 deletions
-5
View File
@@ -16,11 +16,6 @@ import (
"github.com/filecoin-project/lotus/build"
)
type ChainIO interface {
ChainReadObj(context.Context, cid.Cid) ([]byte, error)
ChainHasObj(context.Context, cid.Cid) (bool, error)
}
type Common interface {
// MethodGroup: Auth
+6
View File
@@ -32,6 +32,12 @@ import (
"github.com/filecoin-project/lotus/node/modules/dtypes"
)
// ChainIO abstracts operations for accessing raw IPLD objects.
type ChainIO interface {
ChainReadObj(context.Context, cid.Cid) ([]byte, error)
ChainHasObj(context.Context, cid.Cid) (bool, error)
}
// FullNode API is a low-level interface to the Filecoin network full node
type FullNode interface {
Common