diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-30 03:21:14 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-30 03:21:14 +0800 |
commit | 24fc1f073dd5ec0302937fb51729991dd9a40ba3 (patch) | |
tree | a510ed7d938300b6d52fdf19edca01671c682b45 /cmd/mist | |
parent | e1c6c01b4d598f9b7f7ee31326d25903084fc292 (diff) | |
download | go-tangerine-24fc1f073dd5ec0302937fb51729991dd9a40ba3.tar.gz go-tangerine-24fc1f073dd5ec0302937fb51729991dd9a40ba3.tar.zst go-tangerine-24fc1f073dd5ec0302937fb51729991dd9a40ba3.zip |
Add flag to control CORS header #394
* Disabled on CLI
* http://localhost on Mist
Diffstat (limited to 'cmd/mist')
-rw-r--r-- | cmd/mist/main.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/mist/main.go b/cmd/mist/main.go index fab651b22..6780cfb3a 100644 --- a/cmd/mist/main.go +++ b/cmd/mist/main.go @@ -47,12 +47,19 @@ var ( Usage: "absolute path to GUI assets directory", Value: common.DefaultAssetPath(), } + rpcCorsFlag = utils.RPCCORSDomainFlag ) func init() { + // Mist-specific default + if len(rpcCorsFlag.Value) == 0 { + rpcCorsFlag.Value = "http://localhost" + } + app.Action = run app.Flags = []cli.Flag{ assetPathFlag, + rpcCorsFlag, utils.BootnodesFlag, utils.DataDirFlag, |