Skip to content

Commit 08650c7

Browse files
committed
chore: increase resource population account limit
1 parent 9794b72 commit 08650c7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/transaction/transaction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import TransactionWithSigner = algosdk.TransactionWithSigner
3636

3737
export const MAX_TRANSACTION_GROUP_SIZE = 16
3838
export const MAX_APP_CALL_FOREIGN_REFERENCES = 8
39-
export const MAX_APP_CALL_ACCOUNT_REFERENCES = 4
39+
export const MAX_APP_CALL_ACCOUNT_REFERENCES = 8
4040

4141
/**
4242
* @deprecated Convert your data to a `string` or `Uint8Array`, if using ARC-2 use `TransactionComposer.arc2Note`.

src/types/app-factory-and-client.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { afterEach, beforeAll, beforeEach, describe, expect, it, test } from 'vi
44
import * as algokit from '..'
55
import arc56Json from '../../tests/example-contracts/arc56_templates/artifacts/Templates.arc56_draft.json'
66
import byteArraysAr56Json from '../../tests/example-contracts/byte_arrays/artifacts/ByteArrays.arc56.json'
7+
import deployErrorAppArc56Json from '../../tests/example-contracts/deploy_error/artifacts/DeployError.arc56.json'
78
import largeAppArc56Json from '../../tests/example-contracts/extra-pages/large.arc56.json'
89
import smallAppArc56Json from '../../tests/example-contracts/extra-pages/small.arc56.json'
910
import errorInnerAppArc56Json from '../../tests/example-contracts/inner_error/artifacts/InnerApp.arc56.json'
@@ -497,6 +498,7 @@ describe('ARC32: app-factory-and-app-client', () => {
497498
appReferences: [345n],
498499
accountReferences: [testAccount],
499500
assetReferences: [567n],
501+
populateAppCallResources: false,
500502
})
501503

502504
invariant(result.confirmations)

0 commit comments

Comments
 (0)