-
Notifications
You must be signed in to change notification settings - Fork 465
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TX execution doubles categories/txs on UI while execution is in progress #3215
Comments
Screen.Recording.2024-02-07.at.12.52.34.mov |
I think, we could bundle these transactions under Pending category. Otherwise, it looks like other transactions are not pending and require action. |
The pending queue is shown on top of the regular queue for pending txs in 1/X Safes. If a transaction from that queue is signed, it will be present also in the normal queue. We should not show signed txs in the pending queue. |
I think ideally we would only have one list of transactions and just switch their status to pending and remove all labels like Next/Queued and only have one label at the top saying Pending. The reason we have a pending queue on top for 1/n safes is because it is possible to immediately execute transactions which don't show up in the normal queue so we have to fetch the untrusted queue to show those. However, when bulk executing we can be certain that all transactions are fully signed so there is no need to display this pending queue on top. So for a quick fix we could disable the pending queue for bulk execution i.e. if more than one transaction is pending. For a more general fix we could try only showing pending queue items if they are unsigned (0 of n confirmations) or hide signed transactions from the normal queue if they are pending. |
Bug description
Bulk execution doubles categories/txs on UI while execution is in progress
Environment
Steps to reproduce
Current result:
The queue list contains:
pending
queued
next
queued
categories at the same time and the txs are displayed twice on UI
Expected result
Make sure that the categories and txs are not doubled , as this is quite confusing
Obtained result
Screenshots
The text was updated successfully, but these errors were encountered: