aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorBas van Kervel <bas@ethdev.com>2015-06-22 19:54:13 +0800
committerBas van Kervel <bas@ethdev.com>2015-06-22 19:54:13 +0800
commit4ee7f6fc88d504f2eac96de4e6e04d72032a933a (patch)
tree44390b1fd3b1b1ab215f8d3a949fb042c67bab99 /cmd
parent6d596b1ad106db964d4b6a60d35948b588e32b58 (diff)
downloadgo-tangerine-4ee7f6fc88d504f2eac96de4e6e04d72032a933a.tar
go-tangerine-4ee7f6fc88d504f2eac96de4e6e04d72032a933a.tar.gz
go-tangerine-4ee7f6fc88d504f2eac96de4e6e04d72032a933a.tar.bz2
go-tangerine-4ee7f6fc88d504f2eac96de4e6e04d72032a933a.tar.lz
go-tangerine-4ee7f6fc88d504f2eac96de4e6e04d72032a933a.tar.xz
go-tangerine-4ee7f6fc88d504f2eac96de4e6e04d72032a933a.tar.zst
go-tangerine-4ee7f6fc88d504f2eac96de4e6e04d72032a933a.zip
added missing change for sign test
Diffstat (limited to 'cmd')
-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 c0c77c02a..01840ebd9 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
}