use of bisq.core.payment.OKPayAccount in project bisq-desktop by bisq-network.
the class OfferBookViewModelTest method getOKPayAccount.
private PaymentAccount getOKPayAccount(String currencyCode) {
PaymentAccount paymentAccount = new OKPayAccount();
paymentAccount.setSelectedTradeCurrency(new FiatCurrency(currencyCode));
return paymentAccount;
}
Aggregations