mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Make altcoin offer sorting method names more generic
This commit is contained in:
parent
54f815eb4f
commit
03b57916a5
@ -298,8 +298,8 @@ public final class GrpcClient {
|
||||
return offersServiceRequest.getOffersSortedByDate(direction, currencyCode);
|
||||
}
|
||||
|
||||
public List<OfferInfo> getBsqOffersSortedByDate() {
|
||||
return offersServiceRequest.getBsqOffersSortedByDate();
|
||||
public List<OfferInfo> getCryptoCurrencyOffersSortedByDate(String currencyCode) {
|
||||
return offersServiceRequest.getCryptoCurrencyOffersSortedByDate(currencyCode);
|
||||
}
|
||||
|
||||
public List<OfferInfo> getBsqSwapOffersSortedByDate() {
|
||||
@ -330,10 +330,6 @@ public final class GrpcClient {
|
||||
return offersServiceRequest.getMyCryptoCurrencyOffersSortedByDate(currencyCode);
|
||||
}
|
||||
|
||||
public List<OfferInfo> getMyBsqOffersSortedByDate() {
|
||||
return offersServiceRequest.getMyBsqOffersSortedByDate();
|
||||
}
|
||||
|
||||
public List<OfferInfo> getMyBsqSwapBsqOffersSortedByDate() {
|
||||
return offersServiceRequest.getMyBsqSwapOffersSortedByDate();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user