-
Notifications
You must be signed in to change notification settings - Fork 155
feat(cli): resolve updated execution_spec exceptions #1784
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
base: main
Are you sure you want to change the base?
Conversation
TransactionException.INSUFFICIENT_ACCOUNT_FUNDS: "Failed transaction: InsufficientBalanceError('insufficient sender balance')", | ||
TransactionException.TYPE_3_TX_MAX_BLOB_GAS_ALLOWANCE_EXCEEDED: "Failed transaction: BlobGasLimitExceededError('blob gas limit exceeded')", | ||
TransactionException.INSUFFICIENT_MAX_FEE_PER_BLOB_GAS: "Failed transaction: InsufficientMaxFeePerBlobGasError('insufficient max fee per blob gas')", | ||
TransactionException.INSUFFICIENT_MAX_FEE_PER_GAS: "Failed transaction: InsufficientMaxFeePerGasError('Insufficient max fee per gas", |
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.
We should probably stay consistent with capitalization in the messages. Other than that, looks good 😄
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.
makes sense! since this requires changes on the execution-spec side as well - should we tackle it now or track with an issue for now?
"branch": "forks/osaka", | ||
"commit": "7b1694e9a0b7647c6d53d1bddbf96454a875e7fa" |
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.
ethereum/execution-specs#1286 was merged in forks/osaka
so this is a commit from that branch. Not sure if we should wait for forks/osaka to be merged before merging this?
🗒️ Description
Specific exceptions were added to execution_spec
InvalidTransaction
types. This is a complementary update to accommodate for these specific exceptions.Exception types and details are outlined here:
🔗 Related Issues
ethereum/execution-specs#1021
✅ Checklist