Skip to content

Commit e330b35

Browse files
committed
Revert naming changes
1 parent ae4f26e commit e330b35

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/sharing-smart-contract-test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,16 @@ jobs:
8383
echo "Error: Anvil did not start within the timeout period."
8484
exit 1
8585
86-
# TODO check why the CI does not fail when the following error occurs:
86+
# TODO check why the CI does not fail when the following error occurs
87+
# (when the RPC node is not available):
8788
# 1) Uncaught error outside test suite
8889
- name: Hardhat Tests
8990
working-directory: packages/sharing-smart-contract
90-
run: npm run test -- --network bellecour-fork # runs on local forked hardhat network
91+
run: npm run test -- --network local-bellecour-fork
9192

9293
- name: Upgrade Test
9394
working-directory: packages/sharing-smart-contract
94-
run: npm run upgrade-local-fork -- --network bellecour-fork
95+
run: npm run upgrade-local-fork -- --network local-bellecour-fork
9596

9697
- name: Set Directory Permissions
9798
working-directory: packages/sharing-smart-contract

packages/sharing-smart-contract/hardhat.config.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const bellecourBase = {
1717
* @type import('hardhat/config').HardhatUserConfig
1818
*/
1919
module.exports = {
20-
// run `npx hardhat node` to start the forked bellecour node "bellecour-fork"
20+
// run `npx hardhat node` to start the forked bellecour node "local-bellecour-fork"
2121
networks: {
2222
hardhat: {
2323
...bellecourBase,
@@ -27,7 +27,7 @@ module.exports = {
2727
url: 'https://bellecour.iex.ec',
2828
},
2929
},
30-
'bellecour-fork': {
30+
'local-bellecour-fork': {
3131
...bellecourBase,
3232
url: 'http://127.0.0.1:8545',
3333
},

0 commit comments

Comments
 (0)