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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1579,7 +1579,7 @@ func (o *evmTxStore) FindNextUnstartedTransactionFromAddress(ctx context.Context
err:=qq.Get(&dbEtx, `SELECT * FROM evm.txes WHERE from_address = $1 AND state = 'unstarted' AND evm_chain_id = $2 ORDER BY value ASC, created_at ASC, id ASC`, fromAddress, chainID.String())
iferr!=nil {
iferrors.Is(err, sql.ErrNoRows) {
returntxmgr.ErrTxnNotFound
returnsql.ErrNoRows
}
returnpkgerrors.Wrap(err, "failed to FindNextUnstartedTransactionFromAddress")