Skip to content

Commit

Permalink
Use the ethereum-blackhole (the 0x address) for the from address fo…
Browse files Browse the repository at this point in the history
…r tests on mainnet and testnet (#6689)

* use the ethereum-blackhole (the 0x address) for the from address for tests on mainnet and testnet

* fix a typo inside `Black Box Tests` workflow
  • Loading branch information
Muhammad-Altabba authored Jan 8, 2024
1 parent 7c33cc0 commit cc7ff1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black_box_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.mode }}
node-version: ${{ matrix.node }}
- run: yarn
- run: tar -czf /tmp/web3-${{ matrix.node }}.js.tar.gz --exclude="./.git" ./
- uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e_network_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
INFURA_SEPOLIA_HTTP: ${{ secrets.INFURA_SEPOLIA_HTTP }}
INFURA_MAINNET_HTTP: ${{ secrets.INFURA_MAINNET_HTTP }}
MODE: ${{ matrix.mode }}
TEST_ACCOUNT_ADDRESS: ${{ fromJSON('{"sepolia":"0xa127C5E6a7E3600Ac34A9a9928E52521677e7211","mainnet":"0x98AF911164f9d4E0f5983ed114949c3Bfe3ADc9d"}')[matrix.network] }}
TEST_ACCOUNT_ADDRESS: ${{ fromJSON('{"sepolia":"0x0000000000000000000000000000000000000000","mainnet":"0x0000000000000000000000000000000000000000"}')[matrix.network] }}
ALLOWED_SEND_TRANSACTION: ${{ secrets.E2E_TESTS_ALLOWED_SEND_TRANSACTION }}
TEST_ACCOUNT_PRIVATE_KEY: ${{ secrets.TEST_ACCOUNT_PRIVATE_KEY }}
strategy:
Expand Down

1 comment on commit cc7ff1f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: cc7ff1f Previous: 6c075db Ratio
processingTx 9291 ops/sec (±4.56%) 9301 ops/sec (±4.81%) 1.00
processingContractDeploy 40111 ops/sec (±7.50%) 39129 ops/sec (±7.62%) 0.98
processingContractMethodSend 19668 ops/sec (±4.63%) 19443 ops/sec (±5.19%) 0.99
processingContractMethodCall 39508 ops/sec (±6.73%) 38971 ops/sec (±6.34%) 0.99
abiEncode 41899 ops/sec (±8.04%) 44252 ops/sec (±6.92%) 1.06
abiDecode 31879 ops/sec (±6.38%) 30419 ops/sec (±8.89%) 0.95
sign 1623 ops/sec (±4.64%) 1656 ops/sec (±4.08%) 1.02
verify 372 ops/sec (±0.72%) 373 ops/sec (±0.78%) 1.00

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.