Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
guibescos committed Feb 26, 2024
1 parent 9172fad commit 063de56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ it("Unit test for getSizeOfTransaction", async () => {
);

const transaction = new Transaction();
for (let ix of ixsToSend) {
for (const ix of ixsToSend) {
transaction.add(ix);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export class TransactionBuilder {
PublicKey.unique(),
new Connection("http://placeholder.placeholder")
); // We only need wallet and connection for `VersionedTransaction` so we can put placeholders here
for (let instruction of instructions) {
for (const instruction of instructions) {
transactionBuilder.addInstruction(instruction, []);
}
return transactionBuilder.getLegacyTransactions().map(({ tx }) => {
Expand Down

0 comments on commit 063de56

Please sign in to comment.