Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions core/src/main/java/bisq/core/payment/VerseAccount.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
import lombok.EqualsAndHashCode;
import lombok.NonNull;

// Verse was shut down
@Deprecated
@EqualsAndHashCode(callSuper = true)
public final class VerseAccount extends PaymentAccount {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ public final class PaymentMethod implements PersistablePayload, Comparable<Payme
public static final String MONESE_ID = "MONESE";
public static final String SATISPAY_ID = "SATISPAY";
public static final String TIKKIE_ID = "TIKKIE";
// Verse was shut down
@Deprecated
public static final String VERSE_ID = "VERSE";
public static final String STRIKE_ID = "STRIKE";
public static final String SWIFT_ID = "SWIFT";
Expand Down Expand Up @@ -186,6 +188,8 @@ public final class PaymentMethod implements PersistablePayload, Comparable<Payme
public static PaymentMethod MONESE;
public static PaymentMethod SATISPAY;
public static PaymentMethod TIKKIE;
// Verse was shut down
@Deprecated
public static PaymentMethod VERSE;
public static PaymentMethod STRIKE;
public static PaymentMethod SWIFT;
Expand Down Expand Up @@ -260,6 +264,7 @@ public final class PaymentMethod implements PersistablePayload, Comparable<Payme
MONESE = new PaymentMethod(MONESE_ID, DAY, DEFAULT_TRADE_LIMIT_HIGH_RISK),
SATISPAY = new PaymentMethod(SATISPAY_ID, DAY, DEFAULT_TRADE_LIMIT_HIGH_RISK),
TIKKIE = new PaymentMethod(TIKKIE_ID, DAY, Coin.parseCoin("0.05")),
// Verse was shut down
VERSE = new PaymentMethod(VERSE_ID, DAY, DEFAULT_TRADE_LIMIT_HIGH_RISK),
STRIKE = new PaymentMethod(STRIKE_ID, DAY, DEFAULT_TRADE_LIMIT_HIGH_RISK),
SWIFT = new PaymentMethod(SWIFT_ID, 7 * DAY, DEFAULT_TRADE_LIMIT_MID_RISK),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
import lombok.ToString;
import lombok.extern.slf4j.Slf4j;

// Verse was shut down
@Deprecated
@EqualsAndHashCode(callSuper = true)
@ToString
@Setter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ protected void addNewAccount() {
paymentMethodComboBox.setPrefWidth(250);
List<PaymentMethod> list = PaymentMethod.getPaymentMethods().stream()
.filter(PaymentMethod::isFiat)
.filter(paymentMethod -> !paymentMethod.getId().equals(PaymentMethod.VERSE_ID)) // Verse not existing anymore
.sorted()
.collect(Collectors.toList());
paymentMethodComboBox.setItems(FXCollections.observableArrayList(list));
Expand Down
Loading