Skip to content

Commit

Permalink
Merge pull request #7364 from HenrikJannsen/change-MIN_SECURITY_DEPOS…
Browse files Browse the repository at this point in the history
…IT_CHANGE_ACTIVATION_DATE

Change MIN_SECURITY_DEPOSIT_CHANGE_ACTIVATION_DATE to 17.2.2025
  • Loading branch information
alejandrogarcia83 authored Feb 2, 2025
2 parents c6480c3 + 2b25107 commit ba22e9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/bisq/core/btc/wallet/Restrictions.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import java.util.GregorianCalendar;

public class Restrictions {
private static final Date MIN_SECURITY_DEPOSIT_CHANGE_ACTIVATION_DATE = Utilities.getUTCDate(2025, GregorianCalendar.MARCH, 1);
private static final Date MIN_SECURITY_DEPOSIT_CHANGE_ACTIVATION_DATE = Utilities.getUTCDate(2025, GregorianCalendar.FEBRUARY, 17);

private static Coin MIN_TRADE_AMOUNT;
private static Coin MIN_BUYER_SECURITY_DEPOSIT;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ public final class TradeStatistics3 implements ProcessOncePersistableNetworkPayl
CapabilityRequiringPayload, DateSortedTruncatablePayload, ComparableExt<TradeStatistics3> {

@JsonExclude
private transient static final ZoneId ZONE_ID = ZoneId.systemDefault();
private static final ZoneId ZONE_ID = ZoneId.systemDefault();
@JsonExclude
private transient static final long STRICT_FILTER_DATE = new GregorianCalendar(2021, Calendar.NOVEMBER, 1).getTime().getTime();
private static final long STRICT_FILTER_DATE = new GregorianCalendar(2021, Calendar.NOVEMBER, 1).getTime().getTime();

public static TradeStatistics3 from(Trade trade,
@Nullable String referralId,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import java.io.IOException;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;
Expand All @@ -37,6 +38,7 @@
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

@Disabled
public class FileTransferSessionTest implements FileTransferSession.FtpCallback {

double notedProgressPct = -1.0;
Expand Down

0 comments on commit ba22e9a

Please sign in to comment.