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
Currently, any failed operation is showing up as a regular transaction in the transactions tab, causing confusion. We need to distinguish these failed operations from successful ones.
Not showing these transactions at all is an option. But failed operations still consumes the Fee selected by the user. Hence I believe it is important for users to see them. We might consider adding a checkbox in settings to display these transactions or not.
To determine if an operation was successful or not we can the status field.
if (status === 'applied') ==> Success
else ==> Fail
The text was updated successfully, but these errors were encountered:
Currently, any failed operation is showing up as a regular transaction in the transactions tab, causing confusion. We need to distinguish these failed operations from successful ones.
Not showing these transactions at all is an option. But failed operations still consumes the Fee selected by the user. Hence I believe it is important for users to see them. We might consider adding a checkbox in settings to display these transactions or not.
To determine if an operation was successful or not we can the
status
field.if (status === 'applied') ==> Success
else ==> Fail
The text was updated successfully, but these errors were encountered: