T2730
After some wallet improvements, we now have a local function that converts hash160 to ecash: address. Implement this in parseChronikTx in place of the BCH method.
Note: A couple of bugs were uncovered here that had been lurking behind the need to mock address conversions using the legacy method.
- The app was calculating replyAddress for every input, not just the first input, and thereby using the last one.
- The app was mocking and returning the wrong replyAddress for the swap tx unit test
While 1. above could have been fixed in a stacked diff on top of this, it would have required changing the wrong mock to another wrong mock. Not wishing to intentionally introduce an error, fix is included here.