-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Error: Transaction nonce is too low #1814
Comments
Is anyone else out there experiencing this as well? maybe @libreoscar? thanks |
was just able to reproduce locally |
Slack user |
Here is my state log |
@FlySwatter nonce was missing from params for that is different from @dyzz's issue(s) some observations:
|
@kumavis I tried to switch between different networks, and I did send a transaction from my cell phone. |
we'll publish these today with some other fixes and try to get more insight into these bizarre nonce failures |
@kumavis it seems that result from 'eth_getTransactionCount' of ropsten on infura is somehow wrong. https://ropsten.etherscan.io/address/0xd37448ad7949c4ad8eba5aad1a0afdd3199971d8 expected nonce: 2 actual: https://ropsten.infura.io/metamask curl -X POST \
https://ropsten.infura.io/metamask \
-d '{"jsonrpc": "2.0", "id": 1, "method": "eth_getTransactionCount", "params": [
"0xd37448ad7949c4ad8eba5aad1a0afdd3199971d8","latest"
]}' {
"jsonrpc": "2.0",
"id": 1,
"result": "0x0"
} another example: address: 0xE89BB07333b3D792C29c744511bbCFAEE0DdD4b7
|
Thanks for the report @dyzz, EG From INFURA here. We're able to reproduce and are looking into it. Ill send an update shortly. |
Hi @dyzz after looking into it further, the numbers returned by Infura are correct. It looks like you are comparing the transactionCount number to etherscan's total transaction count number which includes both In and Out transactions. If you compare the number of outgoing transactions to the value returned by the Infura RPC, Infura and Etherscan's responses are identical. Let us know if we can help further debug this issue. |
we've made some significant improvements here - folding this into #1127 |
Since our last version release, v3.9.1, I've gotten a couple reports of
Transaction nonce is too low
errors.Our former trick of resetting the provider by switching the network to another and back again does not help people in this state.
Reported most recently by
@gm9
in our slack, who I've asked for some UI state logs that could help in the investigation.In the meanwhile, let this issue represent a bug in the nonce tracker that results in nonces being set incorrectly low.
The text was updated successfully, but these errors were encountered: