mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-14 01:16:17 +00:00
8 lines
176 B
Go
8 lines
176 B
Go
|
package result
|
||
|
|
||
|
// StateHeight is a result of getstateheight RPC.
|
||
|
type StateHeight struct {
|
||
|
BlockHeight uint32 `json:"blockHeight"`
|
||
|
StateHeight uint32 `json:"stateHeight"`
|
||
|
}
|