Skip to content
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 eth_call with transaction overrides for unsigned transactions #87

Merged
merged 2 commits into from
Feb 11, 2025

Conversation

phexyz
Copy link
Contributor

@phexyz phexyz commented Feb 11, 2025

Added overrides for transaction fields when it is not signed in eth_call

                tx.from = None;
                tx.gas_price = None; // preventing InsufficientFunds error
                tx.max_fee_per_gas = None; // preventing InsufficientFunds error
                tx.max_priority_fee_per_gas = None; // preventing InsufficientFunds error
                tx.max_fee_per_blob_gas = None; // preventing InsufficientFunds error
                tx.value = None; // preventing InsufficientFunds error

Deleted unsigned_call

@phexyz phexyz changed the title last commit Fix eth_call with transaction overrides for unsigned transactions Feb 11, 2025
@phexyz phexyz merged commit f0eaaaf into seismic Feb 11, 2025
4 checks passed
@phexyz phexyz deleted the peter/fix-call branch February 11, 2025 21:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant