Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yihuang committed Oct 26, 2023
1 parent 2fa24ca commit ce0f364
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions store/rootmulti/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,12 +227,12 @@ func (rs *Store) CacheMultiStoreWithVersion(version int64) (types.CacheMultiStor

// Implements interface MultiStore
func (rs *Store) GetStore(key types.StoreKey) types.Store {
panic("uncached KVStore is not supposed to be accessed directly")
return rs.stores[key]
}

// Implements interface MultiStore
func (rs *Store) GetKVStore(key types.StoreKey) types.KVStore {
panic("uncached KVStore is not supposed to be accessed directly")
return rs.stores[key]
}

// Implements interface MultiStore
Expand Down

0 comments on commit ce0f364

Please sign in to comment.