Delete() removes the key-value pair from both the LatestStateStore, HistoricalStateStore, and CommitStore
(k []byte)
| 295 | |
| 296 | // Delete() removes the key-value pair from both the LatestStateStore, HistoricalStateStore, and CommitStore |
| 297 | func (s *Store) Delete(k []byte) lib.ErrorI { return s.ss.Delete(k) } |
| 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) } |