From 8c0f4bd5dfadc89cba99fa9d1f1e01808b3829b7 Mon Sep 17 00:00:00 2001 From: Arthur Elliott Date: Wed, 9 Aug 2017 15:24:52 -0400 Subject: [PATCH] trivial comment update License: MIT Signed-off-by: Arthur Elliott --- merkledag/merkledag.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/merkledag/merkledag.go b/merkledag/merkledag.go index 859f79844..067f9df21 100644 --- a/merkledag/merkledag.go +++ b/merkledag/merkledag.go @@ -6,9 +6,10 @@ import ( "fmt" "sync" + blocks "gx/ipfs/QmVA4mafxbfH5aEvNz8fyoxC6J1xhAtw88B4GerPznSZBg/go-block-format" + bserv "github.com/ipfs/go-ipfs/blockservice" offline "github.com/ipfs/go-ipfs/exchange/offline" - blocks "gx/ipfs/QmVA4mafxbfH5aEvNz8fyoxC6J1xhAtw88B4GerPznSZBg/go-block-format" cid "gx/ipfs/QmTprEaAA2A9bst5XH7exuyi5KzNMK3SEDNN8rBDnKWcUS/go-cid" ipldcbor "gx/ipfs/QmXgUVPAxjMLZSyxx818YstJJAoRg3nyPWENmBLVzLtoax/go-ipld-cbor" @@ -32,8 +33,8 @@ type DAGService interface { Get(context.Context, *cid.Cid) (node.Node, error) Remove(node.Node) error - // GetDAG returns, in order, all the single leve child - // nodes of the passed in node. + // GetMany returns a channel of NodeOption given + // a set of CIDs GetMany(context.Context, []*cid.Cid) <-chan *NodeOption Batch() *Batch