aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum/ethereum.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-17 21:15:46 +0800
committerobscuren <geffobscura@gmail.com>2014-05-17 21:15:46 +0800
commit770808ce0d44cadfedbe01694c836be2eaf0e82c (patch)
treef79310a0ea409805897d738f2c2fb7aa5d597355 /ethereum/ethereum.go
parent2ac292dc7ada20d64188b9d35f23600e4642021b (diff)
downloadgo-tangerine-770808ce0d44cadfedbe01694c836be2eaf0e82c.tar.gz
go-tangerine-770808ce0d44cadfedbe01694c836be2eaf0e82c.tar.zst
go-tangerine-770808ce0d44cadfedbe01694c836be2eaf0e82c.zip
Readline repl for linux & osx
Diffstat (limited to 'ethereum/ethereum.go')
-rw-r--r--ethereum/ethereum.go4
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 {