mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-03 18:56:59 +01:00
Fix spelling
This commit is contained in:
parent
6bde12ba40
commit
bddc273bb2
1 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@ public class TradeFormat {
|
|||
"%" + (COL_HEADER_TRADE_TAKER_FEE.length() + 2) + "s"
|
||||
: "";
|
||||
|
||||
boolean showBsqBuyerAddress = shouldShowBqsBuyerAddress(tradeInfo, isTaker);
|
||||
boolean showBsqBuyerAddress = shouldShowBsqBuyerAddress(tradeInfo, isTaker);
|
||||
Supplier<String> bsqBuyerAddressHeader = () -> showBsqBuyerAddress ? COL_HEADER_TRADE_BSQ_BUYER_ADDRESS : "";
|
||||
Supplier<String> bsqBuyerAddressHeaderSpec = () -> showBsqBuyerAddress ? "%s" : "";
|
||||
|
||||
|
@ -203,7 +203,7 @@ public class TradeFormat {
|
|||
}
|
||||
};
|
||||
|
||||
private static boolean shouldShowBqsBuyerAddress(TradeInfo tradeInfo, boolean isTaker) {
|
||||
private static boolean shouldShowBsqBuyerAddress(TradeInfo tradeInfo, boolean isTaker) {
|
||||
if (tradeInfo.getOffer().getBaseCurrencyCode().equals("BTC")) {
|
||||
return false;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue