mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-26 09:42:22 +00:00
11 lines
349 B
Go
11 lines
349 B
Go
|
package result
|
||
|
|
||
|
// FindStorage represents the result of `findstorage` RPC handler.
|
||
|
type FindStorage struct {
|
||
|
Results []KeyValue `json:"results"`
|
||
|
// Next contains the index of the next subsequent element of the contract storage
|
||
|
// that can be retrieved during the next iteration.
|
||
|
Next int `json:"next"`
|
||
|
Truncated bool `json:"truncated"`
|
||
|
}
|