Skip to content

Commit

Permalink
update address
Browse files Browse the repository at this point in the history
  • Loading branch information
luu-alex committed Jan 16, 2024
1 parent 5dfffe8 commit ff51bd0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/web3/test/e2e/sepolia/call.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {
import { toAllVariants } from '../../shared_fixtures/utils';
import {
getSystemE2ETestProvider,
getE2ETestAccountAddress,
getE2ETestContractAddress,
} from '../e2e_utils';

Expand Down Expand Up @@ -88,7 +89,9 @@ describe(`${getSystemTestBackend()} tests - call`, () => {
format: Object.values(FMT_BYTES),
}),
)('should call getOwner method from deployed contract', async ({ format }) => {
const expectedResult = "0x000000000000000000000000a127c5e6a7e3600ac34a9a9928e52521677e7211"
const expectedResult = `0x000000000000000000000000${getE2ETestAccountAddress()
.substring(2)
.toLowerCase()}`;
const result = await web3.eth.call(
{
to: getE2ETestContractAddress(),
Expand Down

2 comments on commit ff51bd0

@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: ff51bd0 Previous: 6c075db Ratio
processingTx 9162 ops/sec (±4.76%) 9301 ops/sec (±4.81%) 1.02
processingContractDeploy 40489 ops/sec (±7.37%) 39129 ops/sec (±7.62%) 0.97
processingContractMethodSend 19602 ops/sec (±5.07%) 19443 ops/sec (±5.19%) 0.99
processingContractMethodCall 38725 ops/sec (±6.35%) 38971 ops/sec (±6.34%) 1.01
abiEncode 44762 ops/sec (±7.46%) 44252 ops/sec (±6.92%) 0.99
abiDecode 30977 ops/sec (±8.25%) 30419 ops/sec (±8.89%) 0.98
sign 1611 ops/sec (±4.06%) 1656 ops/sec (±4.08%) 1.03
verify 377 ops/sec (±0.69%) 373 ops/sec (±0.78%) 0.99

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

@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: ff51bd0 Previous: 6c075db Ratio
processingTx 9543 ops/sec (±3.79%) 9301 ops/sec (±4.81%) 0.97
processingContractDeploy 42617 ops/sec (±6.55%) 39129 ops/sec (±7.62%) 0.92
processingContractMethodSend 20604 ops/sec (±6.63%) 19443 ops/sec (±5.19%) 0.94
processingContractMethodCall 40093 ops/sec (±6.01%) 38971 ops/sec (±6.34%) 0.97
abiEncode 47853 ops/sec (±6.50%) 44252 ops/sec (±6.92%) 0.92
abiDecode 32549 ops/sec (±7.81%) 30419 ops/sec (±8.89%) 0.93
sign 1724 ops/sec (±1.04%) 1656 ops/sec (±4.08%) 0.96
verify 383 ops/sec (±0.64%) 373 ops/sec (±0.78%) 0.97

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

Please sign in to comment.