From f9f9352ceb2655cdf10010b6e8c30797ac97ae25 Mon Sep 17 00:00:00 2001
From: Nick Dodson <silentcicero@outlook.com>
Date: Mon, 15 Jun 2015 10:50:07 -0400
Subject: [PATCH] Change eth_pushTx case to eth_sendRawTransaction

---
 rpc/api.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rpc/api.go b/rpc/api.go
index 01f3007cf..943d50119 100644
--- a/rpc/api.go
+++ b/rpc/api.go
@@ -170,7 +170,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
 		}
 		*reply = v
 
-	case "eth_pushTx":
+	case "eth_sendRawTransaction":
 		args := new(NewSigArgs)
 		if err := json.Unmarshal(req.Params, &args); err != nil {
 			return err
-- 
GitLab