소스 검색

added missing change for sign test

Bas van Kervel 10 년 전
부모
커밋
4ee7f6fc88
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      cmd/geth/js.go

+ 1 - 1
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
 		}