rpc: drop getclaimable RPC call support

It's not present in NEO 3 and it's not needed there.
This commit is contained in:
Roman Khimov 2020-05-28 22:35:46 +03:00
parent d496cc9687
commit 670396b908
7 changed files with 0 additions and 163 deletions

View file

@ -187,16 +187,6 @@ func (c *Client) GetBlockSysFee(index uint32) (util.Fixed8, error) {
return resp, nil
}
// GetClaimable returns tx outputs which can be claimed.
func (c *Client) GetClaimable(address string) (*result.ClaimableInfo, error) {
params := request.NewRawParams(address)
resp := new(result.ClaimableInfo)
if err := c.performRequest("getclaimable", params, resp); err != nil {
return nil, err
}
return resp, nil
}
// GetConnectionCount returns the current number of connections for the node.
func (c *Client) GetConnectionCount() (int, error) {
var (