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