From 4ee7f6fc88d504f2eac96de4e6e04d72032a933a Mon Sep 17 00:00:00 2001 From: Bas van Kervel Date: Mon, 22 Jun 2015 13:54:13 +0200 Subject: [PATCH] added missing change for sign test --- cmd/geth/js.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/geth/js.go b/cmd/geth/js.go index c0c77c02a2..01840ebd9b 100644 --- a/cmd/geth/js.go +++ b/cmd/geth/js.go @@ -314,7 +314,7 @@ func (js *jsre) apiBindings(f xeth.Frontend) error { // load only supported API's in javascript runtime shortcuts := "var eth = web3.eth; " for _, apiName := range apiNames { - if apiName == shared.Web3ApiName || apiName == shared.EthApiName { + if apiName == shared.Web3ApiName { continue // manually mapped }