[#197] sdk: Rename getters of Signature type

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-11-16 11:19:03 +03:00 committed by Alex Vanin
parent 2bcbd48972
commit 2afc684313
3 changed files with 9 additions and 9 deletions

View file

@ -119,7 +119,7 @@ func VerifyIDSignature(obj *Object) error {
func() ([]byte, []byte) {
sig := obj.GetSignature()
return sig.GetKey(), sig.GetSign()
return sig.Key(), sig.Sign()
},
)
}