Commit 366f865e authored by Will Cory's avatar Will Cory

linter

parent e9ab2181
...@@ -2,10 +2,12 @@ package api ...@@ -2,10 +2,12 @@ package api
import ( import (
"encoding/json" "encoding/json"
"log"
"net/http"
"github.com/ethereum-optimism/optimism/indexer/database" "github.com/ethereum-optimism/optimism/indexer/database"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
"github.com/go-chi/chi" "github.com/go-chi/chi"
"net/http"
) )
type PaginationResponse struct { type PaginationResponse struct {
...@@ -72,7 +74,9 @@ func (a *Api) WithdrawalsHandler(w http.ResponseWriter, r *http.Request) { ...@@ -72,7 +74,9 @@ func (a *Api) WithdrawalsHandler(w http.ResponseWriter, r *http.Request) {
func jsonResponse(w http.ResponseWriter, data interface{}, statusCode int) { func jsonResponse(w http.ResponseWriter, data interface{}, statusCode int) {
w.Header().Set("Content-Type", "application/json") w.Header().Set("Content-Type", "application/json")
w.WriteHeader(statusCode) w.WriteHeader(statusCode)
json.NewEncoder(w).Encode(data) if err := json.NewEncoder(w).Encode(data); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
}
} }
type Api struct { type Api struct {
...@@ -98,5 +102,8 @@ func NewApi(bv database.BridgeView) *Api { ...@@ -98,5 +102,8 @@ func NewApi(bv database.BridgeView) *Api {
} }
func (a *Api) Listen(port string) { func (a *Api) Listen(port string) {
http.ListenAndServe(port, a.Router) err := http.ListenAndServe(port, a.Router)
if err != nil {
log.Fatal("Http server failed to start listening", err)
}
} }
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