25da5d2e13
Replace all elements from `v2` to root directory. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
18 lines
372 B
Go
18 lines
372 B
Go
package tombstonetest
|
|
|
|
import (
|
|
refstest "github.com/nspcc-dev/neofs-api-go/v2/refs/test"
|
|
"github.com/nspcc-dev/neofs-api-go/v2/tombstone"
|
|
)
|
|
|
|
func GenerateTombstone(empty bool) *tombstone.Tombstone {
|
|
m := new(tombstone.Tombstone)
|
|
|
|
if !empty {
|
|
m.SetExpirationEpoch(89)
|
|
m.SetSplitID([]byte{3, 2, 1})
|
|
m.SetMembers(refstest.GenerateObjectIDs(false))
|
|
}
|
|
|
|
return m
|
|
}
|