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
If you are sending a lot of messages, and the chain reorgs (and you are using BLS messages) your mempool will get into a bad state where the lowest nonce of any message in the mempool is higher than your actors nonce on chain, but any further messages you send will be given the next highest nonce of any message you have in the mempool.
Two things we can do to improve this situation (we should do both):
Fix handling of BLS messages during reorgs (Requires saving bls messages signatures separately in a place we can get them again)
Detect nonce gaps in the message pool when requesting future nonces
The text was updated successfully, but these errors were encountered:
If you are sending a lot of messages, and the chain reorgs (and you are using BLS messages) your mempool will get into a bad state where the lowest nonce of any message in the mempool is higher than your actors nonce on chain, but any further messages you send will be given the next highest nonce of any message you have in the mempool.
Two things we can do to improve this situation (we should do both):
The text was updated successfully, but these errors were encountered: