-
Notifications
You must be signed in to change notification settings - Fork 350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: earn on llm #8756
base: develop
Are you sure you want to change the base?
fix: earn on llm #8756
Conversation
The latest updates on your projects. Learn more about Vercel for Git βοΈ
|
@@ -69,6 +69,13 @@ export const isAccountEmpty = (a: AccountLike): boolean => { | |||
(a as any).balance.isZero() | |||
); | |||
} | |||
if (a.type === "Account" && a.currency.family === "solana") { | |||
return ( | |||
(a as any).solanaResources && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why check for solana resources here?
if (a.type === "Account" && a.currency.family === "solana") { | ||
return ( | ||
(a as any).solanaResources && | ||
(a as any).balance.isZero() && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wouldn't we want delegation to be disabled if balance isZero OR spendableBalance isZero ?
β Checklist
npx changeset
was attached.π Description
Uploading Screen Recording 2024-12-23 at 16.22.27.movβ¦
β Context
π§ Checklist for the PR Reviewers