Adds a new field to tx state which tracks the number of attestation attempts on a transaction. Previously the processor routines would retry indefinitely. That is no longer the case. When the limit is exceeded, the relayer will log the faulty transaction.
Refactored nested if statements for readability
Refactored redundant sleep calls
Future update: I would like to move the sleep event to it's own routine or worker group as to not freeze a processor routine.
Closes #74
Changes:
Future update: I would like to move the sleep event to it's own routine or worker group as to not freeze a processor routine.