Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
amirylm committed Oct 25, 2023
1 parent 034fd90 commit f3c25c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/grpc/client/verifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ func (v *verifier) Start(ctx context.Context) error {
Result: v.Process(next),
Msg: next,
}
routerClient.Send(res)
// TODO: handle error
_ = routerClient.Send(res)
}
}
}
Expand Down

0 comments on commit f3c25c5

Please sign in to comment.