Skip to content

Commit

Permalink
fix: Pass options through sendTransaction when using it with a Versio…
Browse files Browse the repository at this point in the history
…nedTransaction (#1188)
  • Loading branch information
febo committed Mar 16, 2023
1 parent 33db07a commit c8e9c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/library-legacy/src/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5696,7 +5696,7 @@ export class Connection {
}

const wireTransaction = transaction.serialize();
return await this.sendRawTransaction(wireTransaction, options);
return await this.sendRawTransaction(wireTransaction, signersOrOptions);
}

if (signersOrOptions === undefined || !Array.isArray(signersOrOptions)) {
Expand Down

0 comments on commit c8e9c08

Please sign in to comment.