Skip to content

Commit

Permalink
fix look up table access
Browse files Browse the repository at this point in the history
  • Loading branch information
0xodia committed Aug 10, 2024
1 parent 0ffd229 commit 4621d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solend-sdk/src/core/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ export class SolendActionCore {
);

const oracles = responses.flatMap((x) => x[1].map((y) => y.oracle));
const lookupTables = await loadLookupTables([...oracles, ...updateFeeds]);
const lookupTables = await loadLookupTables([...oracles, ...feedAccounts]);

const priorityFeeIx = ComputeBudgetProgram.setComputeUnitPrice({
microLamports: 1_000_000,
Expand Down

0 comments on commit 4621d1b

Please sign in to comment.