style: apply any / all automated lint fixes (#15644)

This commit is contained in:
Jacob Gadikian
2023-03-31 13:48:41 +02:00
committed by GitHub
parent 64ab721a08
commit a9546bfad0
46 changed files with 37 additions and 130 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ type Server struct {
func (h Server) Start() error {
h.logger.Info(fmt.Sprintf("Rosetta server listening on add %s", h.addr))
return http.ListenAndServe(h.addr, h.h) //nolint:gosec // users are recommended to operate a proxy in front of this server
return http.ListenAndServe(h.addr, h.h) //nolint:gosec // users are recommended to operate a proxy in front of this server
}
func NewServer(settings Settings) (Server, error) {