22 lines
540 B
Go
22 lines
540 B
Go
package state
|
|
|
|
// SignedData returns payload bytes of the request.
|
|
//
|
|
// Always returns an empty slice.
|
|
func (m NetmapRequest) SignedData() ([]byte, error) {
|
|
return make([]byte, 0), nil
|
|
}
|
|
|
|
// SignedData returns payload bytes of the request.
|
|
//
|
|
// Always returns an empty slice.
|
|
func (m MetricsRequest) SignedData() ([]byte, error) {
|
|
return make([]byte, 0), nil
|
|
}
|
|
|
|
// SignedData returns payload bytes of the request.
|
|
//
|
|
// Always returns an empty slice.
|
|
func (m HealthRequest) SignedData() ([]byte, error) {
|
|
return make([]byte, 0), nil
|
|
}
|