neoneo-go/pkg/rpc/response/result/mpt.go

8 lines
176 B
Go
Raw Normal View History

package result
// StateHeight is a result of getstateheight RPC.
type StateHeight struct {
BlockHeight uint32 `json:"blockHeight"`
StateHeight uint32 `json:"stateHeight"`
}