internal/ethapi: drop eth_compile (#3740)

This commit is contained in:
Péter Szilágyi
2017-03-16 02:54:52 +01:00
committed by Felix Lange
parent dc4c59d42b
commit 61ede86737
2 changed files with 1 additions and 85 deletions
+1 -3
View File
@@ -73,8 +73,7 @@ type State interface {
}
func GetAPIs(apiBackend Backend, solcPath string) []rpc.API {
compiler := makeCompilerAPIs(solcPath)
all := []rpc.API{
return []rpc.API{
{
Namespace: "eth",
Version: "1.0",
@@ -116,5 +115,4 @@ func GetAPIs(apiBackend Backend, solcPath string) []rpc.API {
Public: false,
},
}
return append(compiler, all...)
}