From fb23a0cfe06b52919107879e646e7d9b066acb0e Mon Sep 17 00:00:00 2001
From: Taylor Gerring <taylor.gerring@gmail.com>
Date: Mon, 9 Mar 2015 10:55:18 -0500
Subject: [PATCH] Remove support for compiling serpent

---
 rpc/api.go | 18 ++----------------
 1 file changed, 2 insertions(+), 16 deletions(-)

diff --git a/rpc/api.go b/rpc/api.go
index ded91def1..64e9ed285 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 {
-- 
GitLab