From 417e7f0179e59058527f1e3485fa1104c651f3e1 Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Tue, 1 Apr 2025 14:53:30 +0300 Subject: [PATCH] fix: correct sendSms response --- remote/account_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote/account_service.go b/remote/account_service.go index 33a6380..74f388e 100644 --- a/remote/account_service.go +++ b/remote/account_service.go @@ -17,5 +17,5 @@ type AccountService interface { TokenTransfer(ctx context.Context, amount, from, to, tokenAddress string) (*models.TokenTransferResponse, error) CheckAliasAddress(ctx context.Context, alias string) (*models.AliasAddress, error) RequestAlias(ctx context.Context, hint string, publicKey string) (*models.RequestAliasResult, error) - SendSMS(ctx context.Context, inviterPhone, inviteePhone string) (*models.TokenTransferResponse, error) + SendSMS(ctx context.Context, inviterPhone, inviteePhone string) (*models.SendSMSResponse, error) }