Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/acceptance-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ jobs:
run: npm install @hashgraph/hedera-local -g

- name: Run hedera local
run: npx hedera restart -d --verbose=trace --network-tag=${{ inputs.networkTag }} --mirror-tag=${{ inputs.mirrorTag }}
# run: npx hedera restart -d --verbose=trace --network-tag=${{ inputs.networkTag }} --mirror-tag=${{ inputs.mirrorTag }}
run: npx hedera restart -d --verbose=trace --network-tag=0.65.1 --mirror-tag=0.140.0-rc1

- name: Stop relay
run: docker stop json-rpc-relay json-rpc-relay-ws
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conformity-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
run: npm install @hashgraph/hedera-local -g

- name: Run hedera local
run: npx hedera restart -d --verbose=trace
run: npx hedera restart -d --verbose=trace --network-tag=0.65.1 --mirror-tag=0.140.0-rc1

- name: Stop relay
run: docker stop json-rpc-relay json-rpc-relay-ws
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/dev-tool-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ jobs:
run: npx lerna run build

- name: Start the hedera local node
run: npx hedera start -d
# run: npx hedera start -d
run: npx hedera restart -d --verbose=trace --network-tag=0.65.1 --mirror-tag=0.140.0-rc1

- name: Stop the local node's relay
run: docker stop json-rpc-relay
Expand Down
2 changes: 1 addition & 1 deletion dapp-example/tests/e2e/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const deployHederaTokenService = async function (wallet) {
const contractArtifact = require('../../src/contracts/HederaTokenService.json');

const contractFactory = new ethers.ContractFactory(contractArtifact.abi, contractArtifact.bytecode, wallet);
const contract = await contractFactory.deploy({ gasLimit: 1_000_000 });
const contract = await contractFactory.deploy();
await contract.waitForDeployment();
const contractAddress = contract.target;

Expand Down
Loading
Loading