network: fix errcheck warning

This commit is contained in:
Roman Khimov 2021-05-12 20:14:35 +03:00
parent 601841ef35
commit 99108c620f

View file

@ -862,7 +862,7 @@ func (s *Server) handleP2PNotaryRequestCmd(r *payload.P2PNotaryRequest) error {
}
// It's OK for it to fail for various reasons like request already existing
// in the pool.
s.RelayP2PNotaryRequest(r)
_ = s.RelayP2PNotaryRequest(r)
return nil
}