Skip to content

Commit

Permalink
Do it (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
guibescos authored Nov 14, 2023
1 parent 6e9b937 commit 2610810
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions staking/app/StakeConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ export class StakeConnection {
);
}

if (!this.isLlcMember(stakeAccount)) {
if (!(await this.isLlcMember(stakeAccount))) {
await this.withJoinDaoLlc(transaction.instructions, stakeAccount.address);
}

Expand Down Expand Up @@ -650,7 +650,7 @@ export class StakeConnection {
);
}

if (!stakeAccount || !this.isLlcMember(stakeAccount)) {
if (!stakeAccount || !(await this.isLlcMember(stakeAccount))) {
await this.withJoinDaoLlc(ixs, stakeAccountAddress);
}

Expand Down Expand Up @@ -755,7 +755,7 @@ export class StakeConnection {
);
}

if (!stakeAccount || !this.isLlcMember(stakeAccount)) {
if (!stakeAccount || !(await this.isLlcMember(stakeAccount))) {
await this.withJoinDaoLlc(ixs, stakeAccountAddress);
}

Expand Down

2 comments on commit 2610810

@vercel
Copy link

@vercel vercel bot commented on 2610810 Nov 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 2610810 Nov 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

staking-devnet – ./

staking-devnet-pyth-web.vercel.app
governance-nu.vercel.app
staking-devnet-git-main-pyth-web.vercel.app

Please sign in to comment.