last test for today

This commit is contained in:
Radostina Lyubomirova 2025-06-03 22:42:07 +03:00
parent 19e6fea833
commit 0901463cce
2 changed files with 2 additions and 2 deletions

View file

@ -54,7 +54,7 @@ jobs:
- name: Start devnet-with-contracts container - name: Start devnet-with-contracts container
run: | run: |
docker run -d --name geth-devnet-test -p 8545:8545 \ docker run -d --name geth-devnet-test -p 8546:8545 \
ghcr.io/${{ github.repository_owner }}/go-ethereum:devnet-with-contracts \ ghcr.io/${{ github.repository_owner }}/go-ethereum:devnet-with-contracts \
geth --http --http.addr 0.0.0.0 --http.port 8545 --http.api eth,net,web3 --dev geth --http --http.addr 0.0.0.0 --http.port 8545 --http.api eth,net,web3 --dev

View file

@ -5,7 +5,7 @@ module.exports = {
solidity: "0.8.28", solidity: "0.8.28",
networks: { networks: {
localhost: { localhost: {
url: "http://127.0.0.1:8545" url: "http://127.0.0.1:8546"
} }
} }
}; };