[#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

@ -51,18 +51,18 @@ func TestVerificationFields(t *testing.T) {
},
{
corrupt: func() {
obj.GetSignature().GetKey()[0]++
obj.GetSignature().Key()[0]++
},
restore: func() {
obj.GetSignature().GetKey()[0]--
obj.GetSignature().Key()[0]--
},
},
{
corrupt: func() {
obj.GetSignature().GetSign()[0]++
obj.GetSignature().Sign()[0]++
},
restore: func() {
obj.GetSignature().GetSign()[0]--
obj.GetSignature().Sign()[0]--
},
},
}