linting: catch some errors

This commit is contained in:
Zach Ramsay
2017-09-21 15:32:06 -04:00
committed by Ethan Buchman
parent 6a378d30f3
commit 36e96c5bf1
5 changed files with 13 additions and 5 deletions

View File

@ -37,7 +37,9 @@ func NewGRPCServer(protoAddr string, app types.ABCIApplicationServer) cmn.Servic
// OnStart starts the gRPC service
func (s *GRPCServer) OnStart() error {
s.BaseService.OnStart()
if err := s.BaseService.OnStart(); err != nil {
return err
}
ln, err := net.Listen(s.proto, s.addr)
if err != nil {
return err