d88394c3d2
Change-Id: Ib489a177c93739f48d3a9669a56d9892640c74ef
17 lines
337 B
Go
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
|
|
}
|