mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 03:38:35 +00:00
14 lines
324 B
Go
14 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"`
|
||
|
}
|