func (k Keeper) Get(ctx sdk.Context, hash hash.Hash) (*servicepb.Service, error) {
    store := ctx.KVStore(k.storeKey)
    if !store.Has(hash) {
        return nil, sdkerrors.Wrapf(sdkerrors.ErrInvalidRequest, "service %q not found", hash)
    }