Skip to content

Commit c8e9c08

Browse files
authored
fix: Pass options through sendTransaction when using it with a VersionedTransaction (#1188)
1 parent 33db07a commit c8e9c08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/library-legacy/src/connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5696,7 +5696,7 @@ export class Connection {
56965696
}
56975697

56985698
const wireTransaction = transaction.serialize();
5699-
return await this.sendRawTransaction(wireTransaction, options);
5699+
return await this.sendRawTransaction(wireTransaction, signersOrOptions);
57005700
}
57015701

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

0 commit comments

Comments
 (0)