Skip to content

Commit

Permalink
fix litestorage
Browse files Browse the repository at this point in the history
  • Loading branch information
zakhar-petukhov committed Aug 31, 2023
1 parent a031d42 commit 6ff1ab1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/litestorage/jetton.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 6ff1ab1

Please sign in to comment.