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 is that having two separate flows to send a transaction introduces subtle differences that may be hard to debug, maintain and can lead to inconsistencies.
Implementation
Create a single flow in status-go to send all transactions via eth_sendRawTransaction regardless which node is used.
Acceptance Criteria
There is a single flow to send a transaction,
The whole code related to gas estimation, getting a nonce etc. is in one place,
Sending a transaction works with local and remote nodes.
The text was updated successfully, but these errors were encountered:
Problem
It is described in this comment.
The problem is that having two separate flows to send a transaction introduces subtle differences that may be hard to debug, maintain and can lead to inconsistencies.
Implementation
Create a single flow in status-go to send all transactions via
eth_sendRawTransaction
regardless which node is used.Acceptance Criteria
The text was updated successfully, but these errors were encountered: