Skip to content

Commit

Permalink
Fix typo in killswitch (#309)
Browse files Browse the repository at this point in the history
Co-authored-by: DonDuala <[email protected]>
  • Loading branch information
DonDuala and DonDuala authored Dec 4, 2024
1 parent d42365e commit a65b752
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/ts/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1238,7 +1238,7 @@ export class ManifestClient {
await this.market.reload(this.connection);
const withdrawAllIx = this.withdrawAllIx();
const withdrawAllTx = new Transaction();
const wihdrawAllSig = await sendAndConfirmTransaction(
const withdrawAllSig = await sendAndConfirmTransaction(
this.connection,
withdrawAllTx.add(...withdrawAllIx),
[payerKeypair],
Expand All @@ -1247,7 +1247,7 @@ export class ManifestClient {
commitment: 'confirmed',
},
);
return [cancelAllSig, wihdrawAllSig];
return [cancelAllSig, withdrawAllSig];
}

/**
Expand Down

0 comments on commit a65b752

Please sign in to comment.