forked from TrueCloudLab/neoneo-go
7 lines
176 B
Go
7 lines
176 B
Go
package result
|
|
|
|
// StateHeight is a result of getstateheight RPC.
|
|
type StateHeight struct {
|
|
BlockHeight uint32 `json:"blockHeight"`
|
|
StateHeight uint32 `json:"stateHeight"`
|
|
}
|