diff options
author | Kenji Siu <kenji@isuntv.com> | 2016-11-01 17:23:24 +0800 |
---|---|---|
committer | Kenji Siu <kenji@isuntv.com> | 2016-11-01 18:40:36 +0800 |
commit | d85d3c74db4ddb179366587e5c3afb048e85b50a (patch) | |
tree | 60ccf2ce3cbccc364f7494965d987bb755351b1e /rpc/http.go | |
parent | 4dc1fb923ab77fe564bdda25f36744dffa235045 (diff) | |
download | dexon-d85d3c74db4ddb179366587e5c3afb048e85b50a.tar.gz dexon-d85d3c74db4ddb179366587e5c3afb048e85b50a.tar.zst dexon-d85d3c74db4ddb179366587e5c3afb048e85b50a.zip |
internal/debug, internal/ethapi, rpc, swarm/storage: Ran "go fmt"
Diffstat (limited to 'rpc/http.go')
-rw-r--r-- | rpc/http.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/http.go b/rpc/http.go index c923580bf..7d4fe5d47 100644 --- a/rpc/http.go +++ b/rpc/http.go @@ -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) } |