Skip to content

Commit

Permalink
Fix typo in killswitch
Browse files Browse the repository at this point in the history
  • Loading branch information
DonDuala committed Dec 4, 2024
1 parent d42365e commit 8ea0483
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 8ea0483

Please sign in to comment.