20 lines
372 B
Go
20 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(empty))
|
||
|
|
||
|
return m
|
||
|
}
|