diff options
author | Felix Lange <fjl@twurst.com> | 2015-03-06 10:38:19 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-03-06 10:57:13 +0800 |
commit | 38f6d60e6e699db24b7a850b5999823b9e36d5bb (patch) | |
tree | e29709adf03982aeb8e5d61c40b1e37399a2fd4e /cmd/ethereum/main.go | |
parent | bae7e93a9c5af679682f89b0f475e98c1eee9e58 (diff) | |
download | dexon-38f6d60e6e699db24b7a850b5999823b9e36d5bb.tar dexon-38f6d60e6e699db24b7a850b5999823b9e36d5bb.tar.gz dexon-38f6d60e6e699db24b7a850b5999823b9e36d5bb.tar.bz2 dexon-38f6d60e6e699db24b7a850b5999823b9e36d5bb.tar.lz dexon-38f6d60e6e699db24b7a850b5999823b9e36d5bb.tar.xz dexon-38f6d60e6e699db24b7a850b5999823b9e36d5bb.tar.zst dexon-38f6d60e6e699db24b7a850b5999823b9e36d5bb.zip |
cmd/ethereum: new JS repl with cross-platform line editing
Diffstat (limited to 'cmd/ethereum/main.go')
-rw-r--r-- | cmd/ethereum/main.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index a38e012c2..c85caf229 100644 --- a/cmd/ethereum/main.go +++ b/cmd/ethereum/main.go @@ -28,7 +28,6 @@ import ( "time" "github.com/codegangsta/cli" - "github.com/ethereum/go-ethereum/cmd/ethereum/repl" "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/eth" @@ -145,9 +144,9 @@ func runjs(ctx *cli.Context) { eth := utils.GetEthereum(ClientIdentifier, Version, ctx) startEth(ctx, eth) if len(ctx.Args()) == 0 { - repl := ethrepl.NewJSRepl(eth) - repl.Start() + repl := newREPL(eth) utils.RegisterInterrupt(func(os.Signal) { repl.Stop() }) + repl.Start() eth.WaitForShutdown() } else if len(ctx.Args()) == 1 { execJsFile(eth, ctx.Args()[0]) |