Commit 74d015bd authored by Jeromy's avatar Jeromy

refactor importer package with trickle and balanced dag generation

parent 7a150b00
package merkledag package mdutils
import ( import (
"testing" "testing"
...@@ -8,13 +8,14 @@ import ( ...@@ -8,13 +8,14 @@ import (
"github.com/jbenet/go-ipfs/blocks/blockstore" "github.com/jbenet/go-ipfs/blocks/blockstore"
bsrv "github.com/jbenet/go-ipfs/blockservice" bsrv "github.com/jbenet/go-ipfs/blockservice"
"github.com/jbenet/go-ipfs/exchange/offline" "github.com/jbenet/go-ipfs/exchange/offline"
dag "github.com/jbenet/go-ipfs/merkledag"
) )
func Mock(t testing.TB) DAGService { func Mock(t testing.TB) dag.DAGService {
bstore := blockstore.NewBlockstore(dssync.MutexWrap(ds.NewMapDatastore())) bstore := blockstore.NewBlockstore(dssync.MutexWrap(ds.NewMapDatastore()))
bserv, err := bsrv.New(bstore, offline.Exchange(bstore)) bserv, err := bsrv.New(bstore, offline.Exchange(bstore))
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
return NewDAGService(bserv) return dag.NewDAGService(bserv)
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment