2020-05-11 13:05:41 +00:00
|
|
|
package state
|
|
|
|
|
|
|
|
// SignedData returns payload bytes of the request.
|
|
|
|
//
|
|
|
|
// Always returns empty slice.
|
|
|
|
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.
|
|
|
|
//
|
|
|
|
// Always returns empty slice.
|
|
|
|
func (m MetricsRequest) SignedData() ([]byte, error) {
|
|
|
|
return make([]byte, 0), nil
|
|
|
|
}
|