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
So far the transfer jobs are named syncAddress-transfer-${address}-${Date.now()} and the trust jobs are named syncAddress-trust-${topics[1]}-${Date.now()}.
This name pattern might produce different jobs with the same name. A better name pattern could include the transaction hash, which is unique.
The text was updated successfully, but these errors were encountered:
Just fyi, the transaction hash is not guaranteed to add uniqueness for these either - one transaction can generate any number of log messages. Log indexes (the number) per transaction hash is guaranteed to be unique though
See the code: https://github.com/CirclesUBI/circles-api/blob/main/src/worker.js#L47
So far the transfer jobs are named
syncAddress-transfer-${address}-${Date.now()}
and the trust jobs are namedsyncAddress-trust-${topics[1]}-${Date.now()}
.This name pattern might produce different jobs with the same name. A better name pattern could include the transaction hash, which is unique.
The text was updated successfully, but these errors were encountered: