state: implement SignedDataSource on NetmapRequest message

This commit is contained in:
Leonard Lyubich 2020-05-11 16:05:41 +03:00
parent f91adcb560
commit 539e93e558
2 changed files with 70 additions and 0 deletions

8
state/sign.go Normal file
View file

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