diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-17 21:15:46 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-17 21:15:46 +0800 |
commit | 770808ce0d44cadfedbe01694c836be2eaf0e82c (patch) | |
tree | f79310a0ea409805897d738f2c2fb7aa5d597355 /ethereum/ethereum.go | |
parent | 2ac292dc7ada20d64188b9d35f23600e4642021b (diff) | |
download | dexon-770808ce0d44cadfedbe01694c836be2eaf0e82c.tar.gz dexon-770808ce0d44cadfedbe01694c836be2eaf0e82c.tar.zst dexon-770808ce0d44cadfedbe01694c836be2eaf0e82c.zip |
Readline repl for linux & osx
Diffstat (limited to 'ethereum/ethereum.go')
-rw-r--r-- | ethereum/ethereum.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereum/ethereum.go b/ethereum/ethereum.go index 128e11139..04933ef8e 100644 --- a/ethereum/ethereum.go +++ b/ethereum/ethereum.go @@ -151,9 +151,9 @@ save these words so you can restore your account later: %s console := NewConsole(ethereum) go console.Start() } else if StartJsConsole { - c := NewJSConsole(ethereum) + repl := NewJSRepl(ethereum) - go c.Start() + go repl.Start() } if StartRpc { |