diff --git a/rpc/api.go b/rpc/api.go
index ded91def16f1521020c98ea28248fe98b13ecc28..64e9ed285055804c1a19e5c9c1389e7789f09bab 100644
--- a/rpc/api.go
+++ b/rpc/api.go
@@ -339,20 +339,11 @@ func (p *EthereumApi) GetData(args *GetDataArgs, reply *interface{}) error {
 }
 
 func (p *EthereumApi) GetCompilers(reply *interface{}) error {
-	c := []string{"serpent"}
+	c := []string{""}
 	*reply = c
 	return nil
 }
 
-func (p *EthereumApi) CompileSerpent(args *CompileArgs, reply *interface{}) error {
-	res, err := ethutil.Compile(args.Source, false)
-	if err != nil {
-		return err
-	}
-	*reply = res
-	return nil
-}
-
 func (p *EthereumApi) DbPut(args *DbArgs, reply *interface{}) error {
 	if err := args.requirements(); err != nil {
 		return err
@@ -528,13 +519,8 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
 		return p.GetCompilers(reply)
 	case "eth_compileSolidity":
 	case "eth_compileLLL":
-		return errNotImplemented
 	case "eth_compileSerpent":
-		args := new(CompileArgs)
-		if err := json.Unmarshal(req.Params, &args); err != nil {
-			return err
-		}
-		return p.CompileSerpent(args, reply)
+		return errNotImplemented
 	case "eth_newFilter":
 		args := new(FilterOptions)
 		if err := json.Unmarshal(req.Params, &args); err != nil {