We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c1a2a7 commit bd073e3Copy full SHA for bd073e3
dapp-example/tests/e2e/bootstrap.js
@@ -134,7 +134,7 @@ const deployHederaTokenService = async function (wallet) {
134
const contractArtifact = require('../../src/contracts/HederaTokenService.json');
135
136
const contractFactory = new ethers.ContractFactory(contractArtifact.abi, contractArtifact.bytecode, wallet);
137
- const contract = await contractFactory.deploy({ gasLimit: 1_000_000 });
+ const contract = await contractFactory.deploy();
138
await contract.waitForDeployment();
139
const contractAddress = contract.target;
140
0 commit comments