Alleviate storage limit issue (Internal Ticket) #2914
Labels
storage limit
this issue is prioritized
Story in develop or in release
type-bug
Something isn't working
Description
In the mobile application we are starting to see a Storage Limit Error becoming a more frequent reported issue. This requires the user to setup their wallet each time this error is thrown. The evidence seems to suggest that since we are saving the entire redux state for the app and decrypting it upon login it opens up the potential for data corruption causing the error.
Focus:
Technical Requirements
analytics
field from redux persist into it's own key so that it's not nested under theroot
key. Hint: Look at the analytics reducer, that's whereanalytics
is being set. This addresses focus number one.controller
addTransaction() see extension referenceAcceptance Criteria
analytics
field that controls MetaMetrics is stored outside of theroot
key in redux-persist.References
// limit and then if it is removes the oldest confirmed or rejected tx.
// Pending or unapproved transactions will not be removed by this
// operation. For safety of presenting a fully functional transaction UI
// representation, this function will not break apart transactions with the
// same nonce, per network. Not accounting for transactions of the same
// nonce and network combo can result in confusing or broken experiences
// in the UI.
The text was updated successfully, but these errors were encountered: