mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 07:07:43 +01:00
Rebase correction
Add one more argument
This commit is contained in:
parent
48dcdf58fc
commit
8b72eba1e0
1 changed files with 5 additions and 1 deletions
|
@ -59,9 +59,12 @@ public class WesternUnionAccountPayload extends CountryBasedPaymentAccountPayloa
|
|||
String countryCode,
|
||||
String holderName,
|
||||
@Nullable String requirements,
|
||||
long maxTradePeriod,
|
||||
@Nullable Map<String, String> excludeFromJsonDataMap) {
|
||||
super(paymentMethodName, id,
|
||||
super(paymentMethodName,
|
||||
id,
|
||||
countryCode,
|
||||
maxTradePeriod,
|
||||
excludeFromJsonDataMap);
|
||||
this.holderName = holderName;
|
||||
this.requirements = requirements;
|
||||
|
@ -90,6 +93,7 @@ public class WesternUnionAccountPayload extends CountryBasedPaymentAccountPayloa
|
|||
countryBasedPaymentAccountPayload.getCountryCode(),
|
||||
westernUnionAccountPayload.getHolderName(),
|
||||
westernUnionAccountPayload.getRequirements().isEmpty() ? null : westernUnionAccountPayload.getRequirements(),
|
||||
proto.getMaxTradePeriod(),
|
||||
CollectionUtils.isEmpty(proto.getExcludeFromJsonDataMap()) ? null : new HashMap<>(proto.getExcludeFromJsonDataMap()));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue