storj/satellite/metainfo/validation_norace.go

17 lines
337 B
Go
Raw Normal View History

// Copyright (C) 2020 Storj Labs, Inc.
// See LICENSE for copying information.
// +build !race
package metainfo
import (
"storj.io/common/pb"
)
// sanityCheckPointer implements sanity checking test data,
// we don't need this in production code.
func sanityCheckPointer(path string, pointer *pb.Pointer) (err error) {
return nil
}