Skip to content

Commit

Permalink
rpc: eth_transactionFilter => eth_newPendingTransactionFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
obscuren committed May 7, 2015
1 parent 7e160a6 commit b3c9b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err

case "eth_newBlockFilter":
*reply = newHexNum(api.xeth().NewBlockFilter())
case "eth_transactionFilter":
case "eth_newPendingTransactionFilter":
*reply = newHexNum(api.xeth().NewTransactionFilter())
case "eth_uninstallFilter":
args := new(FilterIdArgs)
Expand Down

0 comments on commit b3c9b66

Please sign in to comment.