Commit 2f37d285 authored by Brian Tiger Chow's avatar Brian Tiger Chow Committed by Jeromy

fix(merkledag) missing arg

License: MIT
Signed-off-by: default avatarBrian Tiger Chow <brian@perfmode.com>
parent ad36b640
......@@ -295,7 +295,7 @@ func (ds *dagService) BatchFetch(ctx context.Context, root *Node) error {
keys = append(keys, u.Key(lnk.Hash))
}
blocks, err := ds.Blocks.GetBlocks(keys)
blocks, err := ds.Blocks.GetBlocks(ctx, keys)
if err != nil {
return 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