diff --git a/controller/http_api_c.go b/controller/http_api_c.go index 84c4060..4c324a8 100644 --- a/controller/http_api_c.go +++ b/controller/http_api_c.go @@ -68,14 +68,6 @@ var supportedActions = []string{ // It's generally designed to mimic the nano node's RPC API // Though we do additional processing in the middle for some actions func (hc *HttpController) HandleAction(w http.ResponseWriter, r *http.Request) { - ipAddress := utils.IPAddress(r) - // This person should not have any privileges at all - if ipAddress == "62.204.108.5" { - render.Status(r, http.StatusForbidden) - render.JSON(w, r, map[string]string{"error": "IP address is banned"}) - return - } - // Determine type of message and unMarshal var baseRequest map[string]interface{} if err := json.NewDecoder(r.Body).Decode(&baseRequest); err != nil {