Merge pull request #1274 from nspcc-dev/lowercase-json-field-names-for-stateroot

rpc: use lowercase JSON field names for StateHeight
This commit is contained in:
Roman Khimov 2020-08-07 12:24:59 +03:00 committed by GitHub
commit db98f8f30b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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.