mirror of https://github.com/status-im/op-geth.git
parent
677796b351
commit
a2598e649d
|
@ -6,6 +6,7 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/logger"
|
"github.com/ethereum/go-ethereum/logger"
|
||||||
"github.com/ethereum/go-ethereum/logger/glog"
|
"github.com/ethereum/go-ethereum/logger/glog"
|
||||||
|
@ -39,7 +40,7 @@ func Start(pipe *xeth.XEth, config RpcConfig) error {
|
||||||
if len(config.CorsDomain) > 0 {
|
if len(config.CorsDomain) > 0 {
|
||||||
var opts cors.Options
|
var opts cors.Options
|
||||||
opts.AllowedMethods = []string{"POST"}
|
opts.AllowedMethods = []string{"POST"}
|
||||||
opts.AllowedOrigins = []string{config.CorsDomain}
|
opts.AllowedOrigins = strings.Split(config.CorsDomain, " ")
|
||||||
|
|
||||||
c := cors.New(opts)
|
c := cors.New(opts)
|
||||||
handler = newStoppableHandler(c.Handler(JSONRPC(pipe)), l.stop)
|
handler = newStoppableHandler(c.Handler(JSONRPC(pipe)), l.stop)
|
||||||
|
|
Loading…
Reference in New Issue