Skip to content

Commit

Permalink
use the ethereum-blackhole (the 0x address) for the from address for …
Browse files Browse the repository at this point in the history
…tests on mainnet and testnet
  • Loading branch information
Muhammad-Altabba committed Jan 4, 2024
1 parent 0c67cc6 commit e494509
Showing 1 changed file with 1 addition and 1 deletion.
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 e494509

@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: e494509 Previous: 6c075db Ratio
processingTx 9430 ops/sec (±4.02%) 9301 ops/sec (±4.81%) 0.99
processingContractDeploy 38374 ops/sec (±9.10%) 39129 ops/sec (±7.62%) 1.02
processingContractMethodSend 18618 ops/sec (±7.73%) 19443 ops/sec (±5.19%) 1.04
processingContractMethodCall 38273 ops/sec (±5.17%) 38971 ops/sec (±6.34%) 1.02
abiEncode 43882 ops/sec (±6.43%) 44252 ops/sec (±6.92%) 1.01
abiDecode 30508 ops/sec (±7.37%) 30419 ops/sec (±8.89%) 1.00
sign 1601 ops/sec (±1.18%) 1656 ops/sec (±4.08%) 1.03
verify 367 ops/sec (±2.73%) 373 ops/sec (±0.78%) 1.02

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

Please sign in to comment.