aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorBas van Kervel <basvankervel@ziggo.nl>2015-06-08 18:43:58 +0800
committerBas van Kervel <basvankervel@gmail.com>2015-06-11 20:17:27 +0800
commit1b59f890955c3658516daa958d0e4732004a78b7 (patch)
tree0c9e4feb630f89e07cd1b2fe2be0c26c4894ba16 /cmd
parentbbfa0a3dcb82e704828d1438261ff26c50c4ccc3 (diff)
downloadgo-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar
go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar.gz
go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar.bz2
go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar.lz
go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar.xz
go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar.zst
go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.zip
added console command
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geth/main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index 8e55b310c..9e4083251 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -307,6 +307,7 @@ func console(ctx *cli.Context) {
repl := newJSRE(
ethereum,
ctx.String(utils.JSpathFlag.Name),
+ ctx.GlobalString(utils.IPCPathFlag.Name),
ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
ctx.GlobalString(utils.IPCPathFlag.Name),
true,
@@ -329,6 +330,7 @@ func execJSFiles(ctx *cli.Context) {
repl := newJSRE(
ethereum,
ctx.String(utils.JSpathFlag.Name),
+ ctx.GlobalString(utils.IPCPathFlag.Name),
ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
ctx.GlobalString(utils.IPCPathFlag.Name),
false,