aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/main.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-30 03:21:14 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-30 03:21:14 +0800
commit24fc1f073dd5ec0302937fb51729991dd9a40ba3 (patch)
treea510ed7d938300b6d52fdf19edca01671c682b45 /cmd/mist/main.go
parente1c6c01b4d598f9b7f7ee31326d25903084fc292 (diff)
downloadgo-tangerine-24fc1f073dd5ec0302937fb51729991dd9a40ba3.tar
go-tangerine-24fc1f073dd5ec0302937fb51729991dd9a40ba3.tar.gz
go-tangerine-24fc1f073dd5ec0302937fb51729991dd9a40ba3.tar.bz2
go-tangerine-24fc1f073dd5ec0302937fb51729991dd9a40ba3.tar.lz
go-tangerine-24fc1f073dd5ec0302937fb51729991dd9a40ba3.tar.xz
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/main.go')
-rw-r--r--cmd/mist/main.go7
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,