2020-05-11 13:05:41 +00:00
|
|
|
package state
|
|
|
|
|
|
|
|
// SignedData returns payload bytes of the request.
|
|
|
|
//
|
2020-05-11 13:12:49 +00:00
|
|
|
// Always returns an empty slice.
|
2020-05-11 13:05:41 +00:00
|
|
|
func (m NetmapRequest) SignedData() ([]byte, error) {
|
|
|
|
return make([]byte, 0), nil
|
|
|
|
}
|
2020-05-11 13:11:17 +00:00
|
|
|
|
|
|
|
// SignedData returns payload bytes of the request.
|
|
|
|
//
|
2020-05-11 13:12:49 +00:00
|
|
|
// Always returns an empty slice.
|
2020-05-11 13:11:17 +00:00
|
|
|
func (m MetricsRequest) SignedData() ([]byte, error) {
|
|
|
|
return make([]byte, 0), nil
|
|
|
|
}
|
2020-05-11 13:12:49 +00:00
|
|
|
|
|
|
|
// SignedData returns payload bytes of the request.
|
|
|
|
//
|
|
|
|
// Always returns an empty slice.
|
|
|
|
func (m HealthRequest) SignedData() ([]byte, error) {
|
|
|
|
return make([]byte, 0), nil
|
|
|
|
}
|
2020-05-11 13:15:31 +00:00
|
|
|
|
|
|
|
// SignedData returns payload bytes of the request.
|
|
|
|
//
|
|
|
|
// Always returns an empty slice.
|
|
|
|
func (m DumpRequest) SignedData() ([]byte, error) {
|
|
|
|
return make([]byte, 0), nil
|
|
|
|
}
|