forked from TrueCloudLab/frostfs-api-go
9 lines
186 B
Go
9 lines
186 B
Go
|
package state
|
||
|
|
||
|
// SignedData returns payload bytes of the request.
|
||
|
//
|
||
|
// Always returns empty slice.
|
||
|
func (m NetmapRequest) SignedData() ([]byte, error) {
|
||
|
return make([]byte, 0), nil
|
||
|
}
|