-
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
Don't default type = 0x0 for eth_sendTransaction and eth_sendRawTransaction #4241
Conversation
Your Render PR Server URL is https://web3-js-pr-4241.onrender.com. Follow its progress at https://dashboard.render.com/static/srv-c4c40ck6fj33n6f44c90. |
Pull Request Test Coverage Report for Build 1131591968
💛 - Coveralls |
This pull request introduces 1 alert when merging fcb8a56 into b383a8e - view on LGTM.com new alerts:
|
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, let's get this rc out 🚀🚀
* fixed sec issue libs * karma upgrade for lib sec issue fix * upgrade lerna for sec issue fix * change log * removed node 8 web31x build tests * included node 14 and removed node 10 buildtestruns * Don't default type = 0x0 for eth_sendTransaction and eth_sendRawTransaction (#4241) * Remove type = 0x0 default * Update gasPrice short circuit check * Update tests - remove type: 0x0 * Update CHANGELOG * Apply patch fix to web3-eth-accounts * Remove tx type defaulting * update CHANGELOG * update failing test * Remove unused import * Add quick check that user can pass type, and it's retained * Release 1.5.2 (#4242) * Update CHANGELOG * npm i && npm run build * v1.5.2-rc.0 * v1.5.2 * Update CHANGELOG.md Co-authored-by: Wyatt Barnes <[email protected]> * Update CHANGELOG.md Co-authored-by: Wyatt Barnes <[email protected]> * Update CHANGELOG.md Co-authored-by: Wyatt Barnes <[email protected]> * changelog update * fixed sec issue libs * karma upgrade for lib sec issue fix * upgrade lerna for sec issue fix * change log * removed node 8 web31x build tests * included node 14 and removed node 10 buildtestruns * Update CHANGELOG.md Co-authored-by: Wyatt Barnes <[email protected]> * Update CHANGELOG.md Co-authored-by: Wyatt Barnes <[email protected]> * Update CHANGELOG.md Co-authored-by: Wyatt Barnes <[email protected]> * changelog update * packagelock update after rebase merge conflicts * min node is 11 * package lock fix Co-authored-by: jdevcs <[email protected]> Co-authored-by: Wyatt Barnes <[email protected]>
Previous to this PR,
eth_sendTransaction
andeth_sendRawTransaction
would default to includetype = 0x0
when creating the tx object. Now,type
will not be defaulted if EIP-1559 or EIP-2930 params aren't passedAddresses issues mentioned here
Supersedes #4240