From f9ae4cd9e93a7a5d897a241cdf2550660b87697d Mon Sep 17 00:00:00 2001 From: jmacxx <47253594+jmacxx@users.noreply.github.com> Date: Wed, 20 Mar 2024 15:04:35 -0500 Subject: [PATCH] Move prop 412 activation date into the future: May 1 2024. --- .../core/dao/burningman/DelayedPayoutTxReceiverService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/bisq/core/dao/burningman/DelayedPayoutTxReceiverService.java b/core/src/main/java/bisq/core/dao/burningman/DelayedPayoutTxReceiverService.java index cf32e6249dc..0917587538d 100644 --- a/core/src/main/java/bisq/core/dao/burningman/DelayedPayoutTxReceiverService.java +++ b/core/src/main/java/bisq/core/dao/burningman/DelayedPayoutTxReceiverService.java @@ -57,7 +57,7 @@ public class DelayedPayoutTxReceiverService implements DaoStateListener { // See: https://github.com/bisq-network/bisq/issues/6699 public static final Date BUGFIX_6699_ACTIVATION_DATE = Utilities.getUTCDate(2023, GregorianCalendar.JULY, 24); // See: https://github.com/bisq-network/proposals/issues/412 - public static final Date PROPOSAL_412_ACTIVATION_DATE = Utilities.getUTCDate(2024, GregorianCalendar.FEBRUARY, 1); + public static final Date PROPOSAL_412_ACTIVATION_DATE = Utilities.getUTCDate(2024, GregorianCalendar.MAY, 1); public static boolean isBugfix6699Activated() { return new Date().after(BUGFIX_6699_ACTIVATION_DATE);