As of https://github.com/bitcoin/bitcoin/commit/0374e821bd9e9498ce9c03aa8e5435870019978b v0.17.2 is downloaded instead of v0.17.1 for functional testing. This causes test/functional/feature_backwards_compatibility.py to fail, because it requires v0.17.1.
Steps to reproduce:
Run test/get_previous_releases.py -b v0.19.1 v0.18.1 v0.17.1 v0.16.3 v0.15.2. It cannot be downloaded at all because the sha256sum is missing here.
Or adjust the command and run test/get_previous_releases.py -b v0.19.1 v0.18.1 v0.17.2 v0.16.3 v0.15.2, then run test/functional/test_runner.py feature_backwards_compatibility. It´ll fail because the test is missing v0.17.1.
This PR changes v0.17.1 to v0.17.2 in this test and in a few comments.