Skip to content

Commit

Permalink
Merge pull request #4015 from freimair/remove-uid
Browse files Browse the repository at this point in the history
Remove unused uid in fee provider service
  • Loading branch information
sqrrm authored Mar 5, 2020
2 parents bf558c5 + edcc833 commit 879c3f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/bisq/core/provider/fee/FeeProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public FeeProvider(PriceNodeHttpClient httpClient, ProvidersRepository providers
}

public Tuple2<Map<String, Long>, Map<String, Long>> getFees() throws IOException {
String json = httpClient.requestWithGET("getFees", "User-Agent", "bisq/" + Version.VERSION + ", uid:" + httpClient.getUid());
String json = httpClient.requestWithGET("getFees", "User-Agent", "bisq/" + Version.VERSION);

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

0 comments on commit 879c3f2

Please sign in to comment.