FilterStringArgs tests

This commit is contained in:
Taylor Gerring
2015-03-26 20:04:03 +01:00
parent e21ce9a9b4
commit 62ebf999bf
3 changed files with 35 additions and 18 deletions

View File

@@ -297,10 +297,6 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
if err := args.requirements(); err != nil {
return err
}
id := api.xeth().NewFilterString(args.Word)
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
case "eth_uninstallFilter":