Commit e3e7f708 authored by Adrian Sutton's avatar Adrian Sutton Committed by GitHub

op-service: Fix incorrect error message in multicall (#9440)

parent afb4ea6a
......@@ -67,7 +67,7 @@ func (m *MultiCaller) Call(ctx context.Context, block Block, calls ...*ContractC
if err := fetcher.Fetch(ctx); err == io.EOF {
break
} else if err != nil {
return nil, fmt.Errorf("failed to fetch claims: %w", err)
return nil, fmt.Errorf("failed to fetch batch: %w", err)
}
}
results, err := fetcher.Result()
......
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