neoneo-go/pkg/rpc/response/result/mpt.go
2020-11-20 18:06:21 +03:00

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"`
}