-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix waitingforreceipt error #7098
Conversation
Bundle StatsHey there, this message comes from a GitHub action that helps you and reviewers to understand how these changes affect the size of this project's bundle. As this PR is updated, I'll keep you updated on how the bundle size is impacted. Total
Changeset
View detailed bundle breakdownAdded No assets were added Removed No assets were removed Bigger
Smaller No assets were smaller Unchanged
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Benchmark
Benchmark suite | Current: 60a6a8c | Previous: bfe2769 | Ratio |
---|---|---|---|
processingTx |
9331 ops/sec (±3.76% ) |
8959 ops/sec (±4.44% ) |
0.96 |
processingContractDeploy |
40651 ops/sec (±7.07% ) |
39629 ops/sec (±8.47% ) |
0.97 |
processingContractMethodSend |
16659 ops/sec (±7.72% ) |
16647 ops/sec (±9.83% ) |
1.00 |
processingContractMethodCall |
27939 ops/sec (±8.02% ) |
28056 ops/sec (±6.60% ) |
1.00 |
abiEncode |
46269 ops/sec (±6.73% ) |
43700 ops/sec (±8.36% ) |
0.94 |
abiDecode |
30823 ops/sec (±8.08% ) |
30625 ops/sec (±8.11% ) |
0.99 |
sign |
1590 ops/sec (±2.95% ) |
1567 ops/sec (±0.76% ) |
0.99 |
verify |
379 ops/sec (±1.15% ) |
376 ops/sec (±0.39% ) |
0.99 |
This comment was automatically generated by workflow using github-action-benchmark.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## 4.x #7098 +/- ##
==========================================
- Coverage 94.75% 94.71% -0.05%
==========================================
Files 215 215
Lines 8334 8339 +5
Branches 2296 2298 +2
==========================================
+ Hits 7897 7898 +1
- Misses 437 441 +4
Flags with carried forward coverage won't be shown. Click here to find out more.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. please increase test coverage
if (typeof error === 'object' && !isNullish(error) && 'message' in error && (error as { message: string }).message === 'transaction indexing is in progress') { | ||
console.warn('Transaction indexing is in progress.') | ||
} else { | ||
throw error; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This also should be tested locally with Geth before merging.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup tested locally and works well
Description
#7007
This was an issue reported internally, waitforreceipt would fail when a new test geth env was set up,
this will catch the error produced. Fixes this problem ethereum/go-ethereum#28877
Please include a summary of the changes and be sure to follow our Contribution Guidelines.
Type of change
Checklist:
npm run lint
with success and extended the tests and types if necessary.npm run test:unit
with success.npm run test:coverage
and my test cases cover all the lines and branches of the added code.npm run build
and testeddist/web3.min.js
in a browser.CHANGELOG.md
file in the root folder.