Merge pull request #6735 from alvasw/update_dpt_receiver_service_activation_date

Update DelayedPayoutTxReceiverService Activation Date
This commit is contained in:
Alejandro García 2023-06-22 12:59:07 +00:00 committed by GitHub
commit 71982966f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ public class DelayedPayoutTxReceiverService implements DaoStateListener {
// Activation date for bugfix of receiver addresses getting overwritten by a new compensation
// requests change address.
// See: https://github.com/bisq-network/bisq/issues/6699
public static final Date BUGFIX_6699_ACTIVATION_DATE = Utilities.getUTCDate(2023, GregorianCalendar.JULY, 15);
public static final Date BUGFIX_6699_ACTIVATION_DATE = Utilities.getUTCDate(2023, GregorianCalendar.JULY, 24);
public static boolean isBugfix6699Activated() {
return new Date().after(BUGFIX_6699_ACTIVATION_DATE);