Get() returns the value bytes blob from the State Store
(key []byte)
| 298 | |
| 299 | // Get() returns the value bytes blob from the State Store |
| 300 | func (s *Store) Get(key []byte) ([]byte, lib.ErrorI) { return s.ss.Get(key) } |
| 301 | |
| 302 | // Iterator() returns an object for scanning the StateStore starting from the provided prefix. |
| 303 | // The iterator allows forward traversal of key-value pairs that match the prefix. |