Community build #002 #3
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "staging"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Reduced event cache size by depreciating the unecessary "zip-local" package over the already existing "jszip" package, which wasn't being used for compression. It also allowed to maximising the compression ratio which resulted in a 1% compression gain over the legacy method.
Improved the deposit modal UI disclaimer about note backups in place of suggesting on-chain note recovery - which in of itself is a privacy contingency.
Resolved event caching detection issues, as the
array.indexOf
query was giving false positives since the bool condition only enforced!== 0
. When in actually an incorrect query returns-1
, decision was to replace it witharray.includes
.Resolved RPC fetching conflicts, as the
lastBlock
reference fromgetEventsFromDB
is incorrectly indexed as IndexedDB does not maintain assortment. This was resolved by forcing sorting events as they are originally sorted each time it is queried, which isn't ideal but shall be improved in future updates.