forked from TrueCloudLab/neoneo-go
1e0750e3cd
Move result there also.
13 lines
324 B
Go
13 lines
324 B
Go
package result
|
|
|
|
type FindStates struct {
|
|
Results []KeyValue `json:"results"`
|
|
FirstProof *ProofWithKey `json:"firstProof,omitempty"`
|
|
LastProof *ProofWithKey `json:"lastProof,omitempty"`
|
|
Truncated bool `json:"truncated"`
|
|
}
|
|
|
|
type KeyValue struct {
|
|
Key []byte `json:"key"`
|
|
Value []byte `json:"value"`
|
|
}
|