diff options
author | zelig <viktor.tron@gmail.com> | 2015-04-22 21:55:01 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-04-24 19:45:11 +0800 |
commit | 6b1b5a4a2a8b315f4d0e7a08ab10563653711a92 (patch) | |
tree | 697ed17f77ce843ce0086e9532a2ee2d992a906d /cmd/geth/main.go | |
parent | 1b7c017076ae578a89a18b5c7ffc61e9c8d59eee (diff) | |
download | dexon-6b1b5a4a2a8b315f4d0e7a08ab10563653711a92.tar dexon-6b1b5a4a2a8b315f4d0e7a08ab10563653711a92.tar.gz dexon-6b1b5a4a2a8b315f4d0e7a08ab10563653711a92.tar.bz2 dexon-6b1b5a4a2a8b315f4d0e7a08ab10563653711a92.tar.lz dexon-6b1b5a4a2a8b315f4d0e7a08ab10563653711a92.tar.xz dexon-6b1b5a4a2a8b315f4d0e7a08ab10563653711a92.tar.zst dexon-6b1b5a4a2a8b315f4d0e7a08ab10563653711a92.zip |
cli/js console: if corsDomain is not given to startRpc, we fall back to value set on command line with `-corsDomain`
Diffstat (limited to 'cmd/geth/main.go')
-rw-r--r-- | cmd/geth/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 70be2ed2e..dd87632b6 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -296,7 +296,7 @@ func console(ctx *cli.Context) { } startEth(ctx, ethereum) - repl := newJSRE(ethereum, ctx.String(utils.JSpathFlag.Name), true) + repl := newJSRE(ethereum, ctx.String(utils.JSpathFlag.Name), true, ctx.GlobalString(utils.RPCCORSDomainFlag.Name)) repl.interactive() ethereum.Stop() @@ -311,7 +311,7 @@ func execJSFiles(ctx *cli.Context) { } startEth(ctx, ethereum) - repl := newJSRE(ethereum, ctx.String(utils.JSpathFlag.Name), false) + repl := newJSRE(ethereum, ctx.String(utils.JSpathFlag.Name), false, ctx.GlobalString(utils.RPCCORSDomainFlag.Name)) for _, file := range ctx.Args() { repl.exec(file) } |