From 5b41c8dc6440d8561cdd03814c082a6a87b48a7e Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Tue, 1 Apr 2025 14:55:03 +0300 Subject: [PATCH] chore: rename SendSMS to SendUpsellSMS --- remote/account_service.go | 2 +- remote/http/service.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/remote/account_service.go b/remote/account_service.go index 74f388e..07e697e 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.SendSMSResponse, error) + SendUpsellSMS(ctx context.Context, inviterPhone, inviteePhone string) (*models.SendSMSResponse, error) } diff --git a/remote/http/service.go b/remote/http/service.go index f58a7ba..7ddccde 100644 --- a/remote/http/service.go +++ b/remote/http/service.go @@ -317,7 +317,7 @@ func requestEnsAlias(ctx context.Context, publicKey string, hint string) (*model // Parameters: // - inviterPhone: The user initiating the SMS. // - inviteePhone: The number being invited to Sarafu. -func (as *HTTPAccountService) SendSMS(ctx context.Context, inviterPhone, inviteePhone string) (*models.SendSMSResponse, error) { +func (as *HTTPAccountService) SendUpsellSMS(ctx context.Context, inviterPhone, inviteePhone string) (*models.SendSMSResponse, error) { var r models.SendSMSResponse // Create request payload