Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PriceNode: Add support for multiple ExchangeRateProviders #4315

Merged
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f2085b4
Simplify validation in ExchangeRateServiceTest
cd2357 Jun 16, 2020
f650115
ExchangeRateService: Support aggregate rates
cd2357 Jun 16, 2020
671e809
Integrate initial set of ExchangeRateProviders
cd2357 Jun 16, 2020
c6ef40e
Revert XChange version to keep jdk10 compatibility
cd2357 Jun 17, 2020
141ead0
Wrap comments at 90 characters
cd2357 Jul 11, 2020
3e314a9
Rename exception variables to ex
cd2357 Jul 11, 2020
5cffddc
Rewrite else-if clause
cd2357 Jul 11, 2020
020547e
Remove Order annotation from ExchangeRateProviders
cd2357 Jul 11, 2020
75a0a47
Mark new ExchangeRateProviders as package-private
cd2357 Jul 11, 2020
aceb7ee
Renamed ExchangeRateProvider test class
cd2357 Jul 11, 2020
329188d
Reduce number of exchange API calls when polling
cd2357 Jul 12, 2020
7fc5191
Reuse sets of supported currencies
cd2357 Jul 13, 2020
637378b
Integrate more exchanges using knowm xchange
cd2357 Jul 26, 2020
9be2a5b
Integrate Bitpay exchange rate API
cd2357 Jul 27, 2020
399f65d
Integrate CoinGecko API
cd2357 Jul 27, 2020
5a19442
Integrate Coinpaprika API
cd2357 Jul 27, 2020
b362b4c
Integrate Huobi exchange API
cd2357 Jul 27, 2020
efda45f
Integrate Hitbtc exchange API
cd2357 Jul 27, 2020
8d33544
Fix Bitpay and CoinGecko altcoin rates
cd2357 Jul 28, 2020
4dc24e5
Disable BitcoinAverage
cd2357 Jul 12, 2020
82bbb2d
Upgrade Tor to v3
cd2357 Aug 5, 2020
36dbb2e
Upgrade Java to v11
cd2357 Aug 5, 2020
11076e7
Set quiet flag for java install command
cd2357 Aug 6, 2020
9fb5c0b
Remove unused imports
cd2357 Aug 8, 2020
0c27038
Apply Codacy style changes
cd2357 Aug 8, 2020
d972a75
Improve exception handling to match Codacy rules
cd2357 Aug 8, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pricenode/install_pricenode_debian.sh
Expand Up @@ -61,7 +61,7 @@ sudo -H -i -u "${BISQ_USER}" git config --global advice.detachedHead false
sudo -H -i -u "${BISQ_USER}" git clone --branch "${BISQ_REPO_TAG}" "${BISQ_REPO_URL}" "${BISQ_HOME}/${BISQ_REPO_NAME}"

echo "[*] Installing OpenJDK 11"
sudo -H -i -u "${ROOT_USER}" apt-get install -y openjdk-11-jdk
sudo -H -i -u "${ROOT_USER}" apt-get install -qq -y openjdk-11-jdk

echo "[*] Checking out Bisq ${BISQ_LATEST_RELEASE}"
sudo -H -i -u "${BISQ_USER}" sh -c "cd ${BISQ_HOME}/${BISQ_REPO_NAME} && git checkout ${BISQ_LATEST_RELEASE}"
Expand Down