Update Mappings interface to take a diff as an argument to Lookup

This commit is contained in:
Elizabeth Engelman
2019-09-25 16:34:31 -05:00
parent deb0315a49
commit 3fb8e13979
3 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ import (
)
type Mappings interface {
Lookup(key common.Hash) (utils.StorageValueMetadata, error)
Lookup(diff utils.StorageDiff) (utils.StorageValueMetadata, error)
SetDB(db *postgres.DB)
}