func (s *OrderService) Lock(ctx context.Context, in *pb.OrderSpecificRequest) (*pb.Empty, error) {

    orderInBytes, err := s.Storage.Get(getOrderStorageKey(in.GetChannelID(), in.GetOrderID()))
    if !errors.IsEmpty(err) {
        return nil, errors.E(errors.Op("Get order in Lock"), err)