mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-30 18:28:52 -04:00
merged with cbeams formatting changes. use MVP pattern for create offer screen
This commit is contained in:
parent
7f67d5545d
commit
1c3c8b9d21
29 changed files with 1232 additions and 601 deletions
|
@ -53,7 +53,7 @@ public class Offer implements Serializable {
|
|||
private final BankAccountType bankAccountType;
|
||||
private final Country bankAccountCountry;
|
||||
|
||||
private final double collateral;
|
||||
private final long collateral;
|
||||
private final List<Country> acceptedCountries;
|
||||
private final List<Locale> acceptedLanguageLocales;
|
||||
private final String bankAccountUID;
|
||||
|
@ -76,7 +76,7 @@ public class Offer implements Serializable {
|
|||
Country bankAccountCountry,
|
||||
String bankAccountUID,
|
||||
Arbitrator arbitrator,
|
||||
double collateral,
|
||||
long collateral,
|
||||
List<Country> acceptedCountries,
|
||||
List<Locale> acceptedLanguageLocales) {
|
||||
this.id = id;
|
||||
|
@ -178,7 +178,7 @@ public class Offer implements Serializable {
|
|||
return arbitrator;
|
||||
}
|
||||
|
||||
public double getCollateral() {
|
||||
public long getCollateral() {
|
||||
return collateral;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue