storj/satellite/metainfo/validation_norace.go
Egon Elbre d88394c3d2 satellite/metainfo: verify pointer in service
Change-Id: Ib489a177c93739f48d3a9669a56d9892640c74ef
2020-06-11 13:45:58 +00:00

17 lines
337 B
Go

// 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
}