Description
When The App extract the valuetransfers list from zingolib, every time the order of the items in the list change (most of the times there are the same items but with a slightly different order...)
Apparently this doesn't sound really bad, but the reality is different: the App have to load a long list every single time (each 5 seconds) because of the order is different... and worse than that is: The App have to do a sort
of the list every time consuming a precious time in the UI.
Before... with transactions the order was the same every time you fired the list from zingolib.
The App have two new problems, IMO:
- The App load the new list of valuetransfers all the time (same items, different order)
- Before loading the ValueTransfers, the App have to do a heavy
sort
of the items, because we don't want to see the list of valuatransfers flickering like the item are cracy...
Tentative solution: The result of the VT list have to have a specific order every time the App fired it. This way the App can load it only when there are changes and the App doesn't have to do a sort
never.