aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/js.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-27 08:07:03 +0800
committerobscuren <geffobscura@gmail.com>2015-05-27 08:07:03 +0800
commit70867904a0255bd044851585a9ad2dc34391ced2 (patch)
tree9c5dfc6a9b8944c37f874a81cc9f8fd3d697ad4e /cmd/geth/js.go
parentceea1a7051ddc7d2660117204aeb3392b7cf8314 (diff)
parent2c532a7255919bc09e01cca6866bfc15682509a3 (diff)
downloadgo-tangerine-70867904a0255bd044851585a9ad2dc34391ced2.tar
go-tangerine-70867904a0255bd044851585a9ad2dc34391ced2.tar.gz
go-tangerine-70867904a0255bd044851585a9ad2dc34391ced2.tar.bz2
go-tangerine-70867904a0255bd044851585a9ad2dc34391ced2.tar.lz
go-tangerine-70867904a0255bd044851585a9ad2dc34391ced2.tar.xz
go-tangerine-70867904a0255bd044851585a9ad2dc34391ced2.tar.zst
go-tangerine-70867904a0255bd044851585a9ad2dc34391ced2.zip
Merge branch 'release/0.9.25'v0.9.25
Diffstat (limited to 'cmd/geth/js.go')
-rw-r--r--cmd/geth/js.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/js.go b/cmd/geth/js.go
index 342a80bd2..0fb234d45 100644
--- a/cmd/geth/js.go
+++ b/cmd/geth/js.go
@@ -104,7 +104,7 @@ func newJSRE(ethereum *eth.Ethereum, libPath, corsDomain string, interactive boo
func (js *jsre) apiBindings(f xeth.Frontend) {
xe := xeth.New(js.ethereum, f)
ethApi := rpc.NewEthereumApi(xe)
- jeth := rpc.NewJeth(ethApi, js.re.ToVal, js.re)
+ jeth := rpc.NewJeth(ethApi, js.re)
js.re.Set("jeth", struct{}{})
t, _ := js.re.Get("jeth")