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:
commit
db98f8f30b
2 changed files with 3 additions and 3 deletions
|
@ -626,7 +626,7 @@ var rpcClientTestCases = map[string][]rpcClientTestCase{
|
||||||
invoke: func(c *Client) (interface{}, error) {
|
invoke: func(c *Client) (interface{}, error) {
|
||||||
return c.GetStateHeight()
|
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{} {
|
result: func(c *Client) interface{} {
|
||||||
return &result.StateHeight{
|
return &result.StateHeight{
|
||||||
BlockHeight: 208,
|
BlockHeight: 208,
|
||||||
|
|
|
@ -11,8 +11,8 @@ import (
|
||||||
|
|
||||||
// StateHeight is a result of getstateheight RPC.
|
// StateHeight is a result of getstateheight RPC.
|
||||||
type StateHeight struct {
|
type StateHeight struct {
|
||||||
BlockHeight uint32 `json:"blockHeight"`
|
BlockHeight uint32 `json:"blockheight"`
|
||||||
StateHeight uint32 `json:"stateHeight"`
|
StateHeight uint32 `json:"stateheight"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ProofWithKey represens key-proof pair.
|
// ProofWithKey represens key-proof pair.
|
||||||
|
|
Loading…
Reference in a new issue