1// Copyright 2020 Keybase Inc. All rights reserved.
2// Use of this source code is governed by a BSD
3// license that can be found in the LICENSE file.
4
5// +build production
6
7package libkbfs
8
9import "github.com/keybase/client/go/kbfs/kbfsblock"
10
11func verifyLocalBlockIDMaybe(_ []byte, _ kbfsblock.ID) error {
12	// Don't bother verifying local block IDs when we're in production
13	// mode, since it's expensive.
14	return nil
15}
16