As per TG discussion, removing the redundant testnet environment instantiations and testnet specific unit tests.
Details
Details
- Reviewers
bytesofman - Group Reviewers
Restricted Project - Commits
- rABC52c7d8f32d9c: [Cashtab] Remove testnet instantiations and unit tests
- npm test and ensure existing test suites all pass
- npm start
- grep -r 'testnet' src/ and ensure the only results are the 'testnet: false' attribute in mockTxBuilderObj.js
- create a new wallet (to trigger getWalletDetails) and ensure the successful creation of the wallet
- send a normal XEC tx to this new wallet's receiving address and ensure successful tx
Diff Detail
Diff Detail
- Repository
- rABC Bitcoin ABC
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
Let's take out all the testnet stuff in this diff, i.e.
grep -r REACT_APP_BCHA_APIS_TEST src/
Also pull that variable out of .env
Comment Actions
Removed all instances of REACT_APP_BCHA_APIS_TEST including .env, which subsequently made the REACT_APP_NETWORK param redundant, hence its inclusion in this removal as well.