rpc: drop support for gettxout method

Neo 3 doesn't need it.
This commit is contained in:
Roman Khimov 2020-06-01 22:18:22 +03:00
parent 232e1a2598
commit d856df36a7
7 changed files with 0 additions and 139 deletions

View file

@ -670,27 +670,6 @@ var rpcClientTestCases = map[string][]rpcClientTestCase{
},
},
},
"gettxout": {
{
name: "positive",
invoke: func(c *Client) (interface{}, error) {
hash, err := util.Uint256DecodeStringLE("f4250dab094c38d8265acc15c366dc508d2e14bf5699e12d9df26577ed74d657")
if err != nil {
panic(err)
}
return c.GetTxOut(hash, 0)
},
serverResponse: `{"jsonrpc":"2.0","id":1,"result":{"N":0,"Asset":"c56f33fc6ecfcd0c225c4ab356fee59390af8560be0e930faebe74a6daff7c9b","Value":"2950","Address":"AHCNSDkh2Xs66SzmyKGdoDKY752uyeXDrt"}}`,
result: func(c *Client) interface{} {
return &result.TransactionOutput{
N: 0,
Asset: "c56f33fc6ecfcd0c225c4ab356fee59390af8560be0e930faebe74a6daff7c9b",
Value: util.Fixed8FromInt64(2950),
Address: "AHCNSDkh2Xs66SzmyKGdoDKY752uyeXDrt",
}
},
},
},
"getunclaimed": {
{
name: "positive",
@ -1059,12 +1038,6 @@ var rpcClientErrorCases = map[string][]rpcClientErrorCase{
return c.GetTransactionHeight(util.Uint256{})
},
},
{
name: "gettxoutput_invalid_params_error",
invoke: func(c *Client) (interface{}, error) {
return c.GetTxOut(util.Uint256{}, 0)
},
},
{
name: "getunclaimed_invalid_params_error",
invoke: func(c *Client) (interface{}, error) {
@ -1235,12 +1208,6 @@ var rpcClientErrorCases = map[string][]rpcClientErrorCase{
return c.GetTransactionHeight(util.Uint256{})
},
},
{
name: "getxoutput_unmarshalling_error",
invoke: func(c *Client) (interface{}, error) {
return c.GetTxOut(util.Uint256{}, 0)
},
},
{
name: "getunclaimed_unmarshalling_error",
invoke: func(c *Client) (interface{}, error) {