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
It should be possible to broadcast a tx and set the nonce as "the next available nonce, including all the pending transactions".
Nonce is already exposed since #488, but the value is currently given as an integer.
I have a few ideas but not sure which is the best. Open to comments or further suggestions.
accounts[0].transfer(accounts[1], nonce="next") accounts[0].transfer(accounts[1], nonce="pending") accounts[0].transfer(accoutns[1], nonce=accounts[0].pending_nonce)
Requires #587 before it will be useful.
The text was updated successfully, but these errors were encountered:
matnad
Successfully merging a pull request may close this issue.
Overview
It should be possible to broadcast a tx and set the nonce as "the next available nonce, including all the pending transactions".
Specification
Nonce is already exposed since #488, but the value is currently given as an integer.
I have a few ideas but not sure which is the best. Open to comments or further suggestions.
Dependencies
Requires #587 before it will be useful.
The text was updated successfully, but these errors were encountered: