Skip to content

Commit

Permalink
fix: connection to ganache
Browse files Browse the repository at this point in the history
  • Loading branch information
r-marques committed Sep 27, 2023
1 parent 64cb9df commit 8a71dbd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Start ganache
env:
SEED_WORDS: ${{ secrets.seedWords }}
run: yarn ganache --port 18545 --chain.chainId 8998 --wallet.mnemonic "$SEED_WORDS" --detach
run: yarn ganache --server.port 18545 --chain.chainId 8998 --wallet.mnemonic "$SEED_WORDS" --detach

- name: Run unit tests
env:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.16",
"express": "^4.18.2",
"ganache": "^7.9.0",
"ganache": "^7.9.1",
"http-proxy": "^1.18.1",
"husky": "^8.0.3",
"lint-staged": "^13.0.4",
Expand Down
2 changes: 1 addition & 1 deletion test/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const config = {
marketplaceUri: 'http://localhost:3100',
neverminedNodeUri: 'http://localhost:8030',
neverminedNodeAddress: '0x068ed00cf0441e4829d9784fcbe7b9e26d4bd8d0',
web3ProviderUri: `http://localhost:${process.env.ETH_PORT || 8545}`,
web3ProviderUri: `http://127.0.0.1:${process.env.ETH_PORT || 8545}`,
verbose: LogLevel.Error,
artifactsFolder: './artifacts',
circuitsFolder: './circuits',
Expand Down

0 comments on commit 8a71dbd

Please sign in to comment.