Skip to content

Commit

Permalink
fix: increase gas limits (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusz-michalik authored Sep 28, 2023
1 parent dfcb046 commit 6bd0714
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export async function newAccount(
fcl.authorizations([authorization]),
fcl.proposer(authorization),
fcl.payer(authorization),
fcl.limit(100),
fcl.limit(9999),
])
.then(fcl.decode)

Expand Down Expand Up @@ -141,7 +141,7 @@ export async function updateAccount(
]),
fcl.proposer(authorization),
fcl.payer(authorization),
fcl.limit(100),
fcl.limit(9999),
])
.then(fcl.decode)

Expand Down
2 changes: 1 addition & 1 deletion src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export async function initializeWallet(config: {
fcl.proposer(authorization),
fcl.payer(authorization),
fcl.authorizations([authorization]),
fcl.limit(200),
fcl.limit(9999),
])
.then(fcl.decode)

Expand Down

0 comments on commit 6bd0714

Please sign in to comment.