status-im / status-desktop

Status Desktop client made in Nim & QML
https://status.app
Mozilla Public License 2.0
273 stars 76 forks source link

Transaction management #13854

Open alaibe opened 4 months ago

alaibe commented 4 months ago

Nonce is currently computed by directly asking latest tx nonce. This is correct in most case, except if u have stuck tx. In that case you can either send a new tx with same nonce but high gas to replace current tx or create a new tx with pending nonce +1

Both solution are valid and we need to be a better facilitator here. Here are the change suggestion:

@John-44 @benjthayer I know we have in design the advance input but maybe we should also consider those usecases?

saledjenic commented 4 months ago

The first part of this issue is handled in this PR https://github.com/status-im/status-go/pull/4912