Skip to content

Commit

Permalink
error info for socialDb -> getFollowers service
Browse files Browse the repository at this point in the history
  • Loading branch information
wpdas committed Jun 17, 2024
1 parent 0d92416 commit 4756d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/contracts/social/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,11 @@ export const getFollowers = async ({ accountId }: { accountId: string }) => {
},
});

console.log(response);
// TODO
// return response;
return { accounts: [], total: 0 };
} catch (e) {
// TODO: Error getting followers because of gas limit (it makes sense because of the amount of data it's trying to get)
console.error("getFollowers:", e);
return { accounts: [], total: 0 };
}
Expand Down

0 comments on commit 4756d31

Please sign in to comment.