Skip to content

Commit c2c0cd4

Browse files
authored
fix: enable jumbo transaction feature (#4419)
Signed-off-by: Logan Nguyen <logan.nguyen@swirldslabs.com>
1 parent f98df70 commit c2c0cd4

File tree

16 files changed

+502
-1077
lines changed

16 files changed

+502
-1077
lines changed

dapp-example/tests/e2e/bootstrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ const deployHederaTokenService = async function (wallet) {
134134
const contractArtifact = require('../../src/contracts/HederaTokenService.json');
135135

136136
const contractFactory = new ethers.ContractFactory(contractArtifact.abi, contractArtifact.bytecode, wallet);
137-
const contract = await contractFactory.deploy({ gasLimit: 1_000_000 });
137+
const contract = await contractFactory.deploy();
138138
await contract.waitForDeployment();
139139
const contractAddress = contract.target;
140140

0 commit comments

Comments
 (0)