Skip to content

Commit

Permalink
sdk: add driftclient opts to vault client sendTransaction
Browse files Browse the repository at this point in the history
  • Loading branch information
ChesterSim committed Aug 11, 2023
1 parent ac97c4c commit 0816b1f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ts/sdk/src/vaultClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,11 @@ export class VaultClient {
})
);
tx.add(...ix);
const { txSig } = await this.driftClient.sendTransaction(tx);
const { txSig } = await this.driftClient.sendTransaction(
tx,
[],
this.driftClient.opts
);

return txSig;
}
Expand Down

0 comments on commit 0816b1f

Please sign in to comment.