File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
packages/sharing-smart-contract Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const bellecourBase = {
1717 * @type import('hardhat/config').HardhatUserConfig
1818 */
1919module . 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 } ,
You can’t perform that action at this time.
0 commit comments