From 6ff1ab1de2115278cd99dc1b63dfbaa5a7aa0883 Mon Sep 17 00:00:00 2001 From: Zakhar Petukhov Date: Thu, 31 Aug 2023 22:45:49 +0700 Subject: [PATCH] fix litestorage --- pkg/litestorage/jetton.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/litestorage/jetton.go b/pkg/litestorage/jetton.go index 41501c93..e9d56967 100644 --- a/pkg/litestorage/jetton.go +++ b/pkg/litestorage/jetton.go @@ -149,6 +149,6 @@ func (s *LiteStorage) GetJettonsHoldersCount(ctx context.Context, accountIDs []t return map[tongo.AccountID]int32{}, nil } -func (s *LiteStorage) GetJettonHolders(ctx context.Context, jettonMaster tongo.AccountID) (map[tongo.AccountID]string, error) { - return map[tongo.AccountID]string{}, nil +func (s *LiteStorage) GetJettonHolders(ctx context.Context, jettonMaster tongo.AccountID) ([]core.JettonHolder, error) { + return []core.JettonHolder{}, nil }