From 9b8531986885fe106970343de66303e597c94910 Mon Sep 17 00:00:00 2001 From: RodrigoAD <15104916+RodrigoAD@users.noreply.github.com> Date: Tue, 8 Nov 2022 17:16:50 +0100 Subject: [PATCH] fix signers --- .../packages/gauntlet-serum-multisig/src/commands/multisig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gauntlet/packages/gauntlet-serum-multisig/src/commands/multisig.ts b/gauntlet/packages/gauntlet-serum-multisig/src/commands/multisig.ts index f0b76ba92..ee6c8b190 100644 --- a/gauntlet/packages/gauntlet-serum-multisig/src/commands/multisig.ts +++ b/gauntlet/packages/gauntlet-serum-multisig/src/commands/multisig.ts @@ -74,7 +74,7 @@ export const wrapCommand = (command) => { if (this.flags.execute) { await prompt('Continue?') logger.loading(`Executing action...`) - const txhash = await this.sendTxWithIDL(this.signAndSendRawTx, this.program.idl)(rawTxs, [], { + const txhash = await this.sendTxWithIDL(this.signAndSendRawTx, this.program.idl)(rawTxs, null, { price: Number(this.flags.computePrice), units: Number(this.flags.computeUnits), })