Skip to content

Commit

Permalink
Merge pull request #3937 from freimair/remove-uid
Browse files Browse the repository at this point in the history
Remove unused uid in pricefeed service
  • Loading branch information
ripcurlx authored Feb 4, 2020
2 parents cd74571 + af939e6 commit d6de99c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public PriceProvider(HttpClient httpClient, String baseUrl) {
public Tuple2<Map<String, Long>, Map<String, MarketPrice>> getAll() throws IOException {
Map<String, MarketPrice> marketPriceMap = new HashMap<>();
String json = httpClient.requestWithGET("getAllMarketPrices", "User-Agent", "bisq/"
+ Version.VERSION + ", uid:" + httpClient.getUid());
+ Version.VERSION);

LinkedTreeMap<?, ?> map = new Gson().fromJson(json, LinkedTreeMap.class);
Map<String, Long> tsMap = new HashMap<>();
Expand Down

0 comments on commit d6de99c

Please sign in to comment.