Skip to content

Commit

Permalink
decrease budget as we don't need that much (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yolley committed Dec 19, 2023
1 parent ecf966f commit 350ddca
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 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.8.0",
"version": "5.8.1",
"$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.8.0",
"version": "5.8.1",
"description": "JavaScript SDK to interact with Streamflow protocol.",
"main": "dist/index.js",
"homepage": "https://github.com/streamflow-finance/js-sdk/",
Expand Down
2 changes: 2 additions & 0 deletions packages/stream/solana/StreamClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
PublicKey,
SystemProgram,
SYSVAR_RENT_PUBKEY,
ComputeBudgetProgram,
TransactionInstruction,
Transaction,
Commitment,
Expand Down Expand Up @@ -587,6 +588,7 @@ export default class SolanaStreamClient extends BaseStreamClient {

const newRecipientTokens = await ata(mint, newRecipient);

ixs.push(ComputeBudgetProgram.setComputeUnitLimit({ units: 100001 }));
ixs.push(
transferStreamInstruction(this.programId, {
authority: invoker.publicKey,
Expand Down

0 comments on commit 350ddca

Please sign in to comment.