Commit 91a73c74 authored by Steven Allen's avatar Steven Allen

fix: update for merkledag API changes

parent a8c6bed7
...@@ -171,7 +171,7 @@ func Descendants(ctx context.Context, getLinks dag.GetLinks, set *cid.Set, roots ...@@ -171,7 +171,7 @@ func Descendants(ctx context.Context, getLinks dag.GetLinks, set *cid.Set, roots
for _, c := range roots { for _, c := range roots {
// Walk recursively walks the dag and adds the keys to the given set // Walk recursively walks the dag and adds the keys to the given set
err := dag.WalkParallel(ctx, verifyGetLinks, c, set.Visit) err := dag.Walk(ctx, verifyGetLinks, c, set.Visit, dag.Concurrent())
if err != nil { if err != nil {
err = verboseCidError(err) err = verboseCidError(err)
......
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