internal/debug, internal/ethapi, rpc, swarm/storage: Ran "go fmt"

This commit is contained in:
Kenji Siu
2016-11-01 17:23:24 +08:00
parent 4dc1fb923a
commit d85d3c74db
4 changed files with 24 additions and 25 deletions

View File

@ -170,7 +170,7 @@ func newCorsHandler(srv *Server, corsString string) http.Handler {
c := cors.New(cors.Options{
AllowedOrigins: allowedOrigins,
AllowedMethods: []string{"POST", "GET"},
MaxAge: 600,
MaxAge: 600,
})
return c.Handler(srv)
}