mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Merge pull request #3937 from freimair/remove-uid
Remove unused uid in pricefeed service
This commit is contained in:
commit
d6de99c2a1
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ public class PriceProvider extends HttpClientProvider {
|
|||
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<>();
|
||||
|
|
Loading…
Add table
Reference in a new issue