Skip to content

Commit

Permalink
fix accounts order in createATA instruction (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yolley authored Dec 27, 2023
1 parent 7379783 commit bbd68ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"packages": [
"packages/*"
],
"version": "5.9.2",
"version": "5.9.3",
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/stream/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@streamflow/stream",
"version": "5.9.2",
"version": "5.9.3",
"description": "JavaScript SDK to interact with Streamflow protocol.",
"main": "dist/index.js",
"homepage": "https://github.com/streamflow-finance/js-sdk/",
Expand Down
2 changes: 1 addition & 1 deletion packages/stream/solana/StreamClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -979,8 +979,8 @@ export default class SolanaStreamClient extends BaseStreamClient {
ixs.push(
createAssociatedTokenAccountInstruction(
invoker.publicKey!,
accountArrays[i][0],
accountArrays[i][1],
accountArrays[i][0],
data.mint,
TOKEN_PROGRAM_ID,
ASSOCIATED_TOKEN_PROGRAM_ID
Expand Down

0 comments on commit bbd68ea

Please sign in to comment.