-
Notifications
You must be signed in to change notification settings - Fork 43
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(builder): remember last cancel txn fees on underpriced #893
Conversation
&& gas_fees.max_priority_fee_per_gas > t.gas_fees.max_priority_fee_per_gas | ||
}) { | ||
self.transactions.push(PendingTransaction { | ||
tx_hash: B256::ZERO, |
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.
are we meant to store a zero hash here?
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.
Yeah, its a marker that the transaction isn't actually pending (since it got rejected)
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.
I assume its just cause it was not succesful
Codecov ReportAttention: Patch coverage is
Additional details and impacted files
Flags with carried forward coverage won't be shown. Click here to find out more.
|
&& gas_fees.max_priority_fee_per_gas > t.gas_fees.max_priority_fee_per_gas | ||
}) { | ||
self.transactions.push(PendingTransaction { | ||
tx_hash: B256::ZERO, |
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.
I assume its just cause it was not succesful
No description provided.