We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
gas_buffer
Add a gas_buffer kwarg to the transaction settings dictionary.
tx = MyContract.foo({'gas_buffer': 8000})
The effect here is that gas_limit is set to eth_estimateGas + gas_buffer.
gas_limit
eth_estimateGas + gas_buffer
If both gas_buffer and gas_limit are given, raise an exception.
None.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Overview
Add a
gas_buffer
kwarg to the transaction settings dictionary.Specification
The effect here is that
gas_limit
is set toeth_estimateGas + gas_buffer
.If both
gas_buffer
andgas_limit
are given, raise an exception.Dependencies
None.
The text was updated successfully, but these errors were encountered: