accounting: implement SignedDataSource on ListRequest message

This commit is contained in:
Leonard Lyubich 2020-05-11 13:20:58 +03:00
parent 8c492a7712
commit 81f537cda8
4 changed files with 64 additions and 0 deletions

View file

@ -411,3 +411,13 @@ func (m *PutRequest) SetAmount(amount *decimal.Decimal) {
func (m *PutRequest) SetHeight(h uint64) {
m.Height = h
}
// GetOwnerID is an OwnerID field getter.
func (m ListRequest) GetOwnerID() OwnerID {
return m.OwnerID
}
// SetOwnerID is an OwnerID field setter.
func (m *ListRequest) SetOwnerID(id OwnerID) {
m.OwnerID = id
}