Skip to content

Commit

Permalink
fix: gas limit update
Browse files Browse the repository at this point in the history
  • Loading branch information
bucurdavid committed Nov 14, 2023
1 parent a826b45 commit c8c7a9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/minter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export abstract class Minter {
.setFunction(new ContractFunction('setLocalRoles'))
.build(),
receiver: this.contract.getAddress(),
gasLimit: 90000000,
gasLimit: 100000000,
sender: senderAddress,
chainID: this.chainID
});
Expand Down
2 changes: 1 addition & 1 deletion src/nft-minter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class NftMinter extends Minter {
value: 50000000000000000,
data: data,
receiver: this.contract.getAddress(),
gasLimit: 50000000,
gasLimit: 100000000,
sender: senderAddress,
chainID: this.chainID
});
Expand Down

0 comments on commit c8c7a9c

Please sign in to comment.