trivial comment update
License: MIT Signed-off-by: Arthur Elliott <clownpriest@gmail.com>
Arthur Elliott committed
Aug 9, 2017 at 15:24 UTC
8c0f4bd5dfadc89cba99fa9d1f1e01808b3829b7
1 file changed
+4
-3
merkledag/merkledag.go
+4
-3
@@ -6,9 +6,10 @@ import (
6
"fmt"
7
"sync"
8
9
+ blocks "gx/ipfs/QmVA4mafxbfH5aEvNz8fyoxC6J1xhAtw88B4GerPznSZBg/go-block-format"
10
+
11
bserv "github.com/ipfs/go-ipfs/blockservice"
12
offline "github.com/ipfs/go-ipfs/exchange/offline"
11
- blocks "gx/ipfs/QmVA4mafxbfH5aEvNz8fyoxC6J1xhAtw88B4GerPznSZBg/go-block-format"
13
14
cid "gx/ipfs/QmTprEaAA2A9bst5XH7exuyi5KzNMK3SEDNN8rBDnKWcUS/go-cid"
15
ipldcbor "gx/ipfs/QmXgUVPAxjMLZSyxx818YstJJAoRg3nyPWENmBLVzLtoax/go-ipld-cbor"
@@ -32,8 +33,8 @@ type DAGService interface {
33
Get(context.Context, *cid.Cid) (node.Node, error)
34
Remove(node.Node) error
35
35
- // GetDAG returns, in order, all the single leve child
36
- // nodes of the passed in node.
36
+ // GetMany returns a channel of NodeOption given
37
+ // a set of CIDs
38
GetMany(context.Context, []*cid.Cid) <-chan *NodeOption
39
40
Batch() *Batch