diff options
author | Bas van Kervel <basvankervel@ziggo.nl> | 2015-06-08 19:21:24 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2015-06-11 20:01:39 +0800 |
commit | 862117e4bdcc5d255fc85fc35e223eec10f0ac7b (patch) | |
tree | 2fcfe6b215753007d788db55d02896c0918fe976 /cmd/geth/main.go | |
parent | a1a475fb9296e214292840d89811123292c7953c (diff) | |
download | dexon-862117e4bdcc5d255fc85fc35e223eec10f0ac7b.tar dexon-862117e4bdcc5d255fc85fc35e223eec10f0ac7b.tar.gz dexon-862117e4bdcc5d255fc85fc35e223eec10f0ac7b.tar.bz2 dexon-862117e4bdcc5d255fc85fc35e223eec10f0ac7b.tar.lz dexon-862117e4bdcc5d255fc85fc35e223eec10f0ac7b.tar.xz dexon-862117e4bdcc5d255fc85fc35e223eec10f0ac7b.tar.zst dexon-862117e4bdcc5d255fc85fc35e223eec10f0ac7b.zip |
changed send methods for backwards compatability in geth console
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 5d7e102c4..8e55b310c 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -307,8 +307,8 @@ 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, nil, ) @@ -329,8 +329,8 @@ 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, nil, ) |