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