frostfs-api-go/state/sign.go

9 lines
186 B
Go
Raw Normal View History

package state
// SignedData returns payload bytes of the request.
//
// Always returns empty slice.
func (m NetmapRequest) SignedData() ([]byte, error) {
return make([]byte, 0), nil
}