diff --git a/rpc/http.go b/rpc/http.go
index afcdd4bd647fe5c6173965d269ba1eb2eaae4179..c923580bfe75cfc3a092077a15dec5fa49493c6f 100644
--- a/rpc/http.go
+++ b/rpc/http.go
@@ -170,6 +170,7 @@ func newCorsHandler(srv *Server, corsString string) http.Handler {
 	c := cors.New(cors.Options{
 		AllowedOrigins: allowedOrigins,
 		AllowedMethods: []string{"POST", "GET"},
+		MaxAge: 600,
 	})
 	return c.Handler(srv)
 }