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 mempool will reject transactions from the mempool when:
The nonce is too low (InsertionError::NonceTooLow)
There is already a transaction with that nonce for the account in the mempool (InsertionError::AlreadyPresent)
The parked account limit is hit (InsertionError::AccountSizeLimit)
We return these errors as AbciErrorCodes. Nonce too low has the code AbciErrorCode::INVALID_NONCE while the other two cases share TRANSACTION_INSERTION_FAILED. It might be nice to have distinct error codes for the other two cases as well.
┆Issue Number: ENG-900
The text was updated successfully, but these errors were encountered:
The mempool will reject transactions from the mempool when:
InsertionError::NonceTooLow
)InsertionError::AlreadyPresent
)InsertionError::AccountSizeLimit
)We return these errors as
AbciErrorCodes
. Nonce too low has the codeAbciErrorCode::INVALID_NONCE
while the other two cases shareTRANSACTION_INSERTION_FAILED
. It might be nice to have distinct error codes for the other two cases as well.┆Issue Number: ENG-900
The text was updated successfully, but these errors were encountered: