Add GetStoreByName to MultiStore to help with Query lookups

This commit is contained in:
Ethan Frey
2018-02-06 17:20:29 -05:00
committed by Ethan Buchman
parent ed592cd94a
commit 57b28d95de
3 changed files with 39 additions and 4 deletions
+2
View File
@@ -39,6 +39,8 @@ type MultiStore interface {
// Convenience for fetching substores.
GetStore(StoreKey) Store
GetKVStore(StoreKey) KVStore
GetStoreByName(string) Store
}
// From MultiStore.CacheMultiStore()....