internal/ethapi: drop eth_compile (#3740)

This commit is contained in:
Péter Szilágyi
2017-03-16 03:54:52 +02:00
committed by Felix Lange
parent dc4c59d42b
commit 61ede86737
2 changed files with 1 additions and 85 deletions

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...)
}