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
The problem appears when a user has already sent any transaction to the node, because after that action every new simulations of transactions will be failed with a error: rpc error: code = Unknown desc = account sequence mismatch, expected 0, got 1: incorrect account sequence [cosmos/[email protected]/x/auth/ante/sigverify.go:265] With gas wanted: '0' and gas used: '39388' : unknown request
The problem will not occur wallets that didn't send transactions after time when the node have started. That means to solve a blocked wallet you need to restart the node. That looks confusing because the node returns a correct sequence, but can't verify new transactions.
Describe the steps to reproduce the behavior
Use any wallet to send any transaction to a node
Build a new tx, you will see a new sequence which is correct
Simulate that new tx on the same node
Fail: cought a problem with your sequence
...
Solution: Restart the node
Try to simulate that tx again
Success: got an estimated gas of the tx
Expected behavior
A node should update a sequence in memory (RAM?) after every new transaction and returning value of sequence must be equal to the value that is using when the node is verifying transactions.
Describe the bug
The problem appears when a user has already sent any transaction to the node, because after that action every new simulations of transactions will be failed with a error:
rpc error: code = Unknown desc = account sequence mismatch, expected 0, got 1: incorrect account sequence [cosmos/[email protected]/x/auth/ante/sigverify.go:265] With gas wanted: '0' and gas used: '39388' : unknown request
The problem will not occur wallets that didn't send transactions after time when the node have started. That means to solve a blocked wallet you need to restart the node. That looks confusing because the node returns a correct sequence, but can't verify new transactions.
Describe the steps to reproduce the behavior
Expected behavior
A node should update a sequence in memory (RAM?) after every new transaction and returning value of sequence must be equal to the value that is using when the node is verifying transactions.
Operating environment
OS: Ubuntu 22.04
Node: v1.0.0
Cosmos SDK: v0.45.16
The text was updated successfully, but these errors were encountered: