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
There are a few queries to GetOperations that attempt to load operation inputs only by looking at the operation type and the transaction ID. One example:
Due to operation resubmission, transactions may now contain multiple operations of a given type, meaning that there is a potential source of confusion here in terms of which operation is loaded. It may not matter if all the operations have identical inputs (which is currently the case for retries) - but worth double-checking that this doesn't cause problems now or in the future.
The text was updated successfully, but these errors were encountered:
There are a few queries to
GetOperations
that attempt to load operation inputs only by looking at the operation type and the transaction ID. One example:firefly/internal/events/tokens_transferred.go
Line 36 in 47ae1fd
Due to operation resubmission, transactions may now contain multiple operations of a given type, meaning that there is a potential source of confusion here in terms of which operation is loaded. It may not matter if all the operations have identical inputs (which is currently the case for retries) - but worth double-checking that this doesn't cause problems now or in the future.
The text was updated successfully, but these errors were encountered: