Related to T2100. currency.prefixes and currency.tokenPrefixes have been converted from arrays to strings.
Details
- Reviewers
bytesofman - Group Reviewers
Restricted Project - Commits
- rABC1b9a4de8a9b5: [Cashtab] currency.prefixes & currency.tokenPrefixes converted to strings
cd web/cashtab
grep -r 'currency.prefixes' src/ should return nothing
grep -r 'currency.tokenPrefixes' should return nothing.
As neither prefix is used in the app, no other testing should be required as changing the type will have no impact on existing code.
Diff Detail
- Repository
- rABC Bitcoin ABC
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
If these entries are no longer used anywhere in the app, please remove them from the currency object
I noticed that in ScanQrCode there is a reference on line 72 to currency.tokenPrefix, which does not exist in the currency object, so it will not be a problem to remove them altogether, but we may need another task / diff to fix what is happening in ScanQrCode.
Rebased to master, removed unused currency.prefixes key/value from currency obj, changed currency.tokenPrefixes to a string.
grep -r 'currency.tokenPrefixes' should return nothing.
This is still being used in ScanQRCode.js
Reviewing that document, it's only used to trigger an analytics event, which we aren't using for anything.
So, please remove it from that file, then also remove it from Ticker.js
Responding to review feedback, removed GA event from ScanQrCode, removed imports for currency obj & GA. Removed tokenprefixes key/value pair from currency obj.