You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When submitting a transaction that overwrites another transaction, the original transaction is not removed and calls to getTransaction() still return the old transaction instead of null.
In geth, the transaction would be removed and returned as None from getTransaction().
What was wrong?
When submitting a transaction that overwrites another transaction, the original transaction is not removed and calls to
getTransaction()
still return the old transaction instead of null.In geth, the transaction would be removed and returned as
None
fromgetTransaction()
.Example:
How can it be fixed?
Unsure whether this is a backend problem or not but i imagine there needs to be some tx pool managing functionality added.
The text was updated successfully, but these errors were encountered: