rpc: use lowercase JSON field names for StateHeight

Follow neo-project/neo#1808. Note that this is an incompatible change, but
this feature is still considered to be experimental upstream.
This commit is contained in:
Roman Khimov 2020-08-05 18:15:29 +03:00
parent a702423c4a
commit ab5eff620b
2 changed files with 3 additions and 3 deletions

View file

@ -626,7 +626,7 @@ var rpcClientTestCases = map[string][]rpcClientTestCase{
invoke: func(c *Client) (interface{}, error) {
return c.GetStateHeight()
},
serverResponse: `{"id":1,"jsonrpc":"2.0","result":{"blockHeight":208,"stateHeight":200}}`,
serverResponse: `{"id":1,"jsonrpc":"2.0","result":{"blockheight":208,"stateheight":200}}`,
result: func(c *Client) interface{} {
return &result.StateHeight{
BlockHeight: 208,

View file

@ -11,8 +11,8 @@ import (
// StateHeight is a result of getstateheight RPC.
type StateHeight struct {
BlockHeight uint32 `json:"blockHeight"`
StateHeight uint32 `json:"stateHeight"`
BlockHeight uint32 `json:"blockheight"`
StateHeight uint32 `json:"stateheight"`
}
// ProofWithKey represens key-proof pair.