ApplyFilter task: Remove version enforcement

The EnforceFilterVersion task always runs before the ApplyFilter and
ensures both traders run the minimum required version.
This commit is contained in:
Alva Swanson 2025-02-18 21:43:35 +00:00
parent 1a083ab246
commit 96b4b915f1
No known key found for this signature in database
GPG key ID: 004760E77F753090

View file

@ -266,9 +266,6 @@ public class TradeUtil {
} else if (paymentAccountPayload != null && filterManager.arePeersPaymentAccountDataBanned(paymentAccountPayload)) {
failed.handleErrorMessage("Other trader is banned by their trading account data.\n" +
"paymentAccountPayload=" + paymentAccountPayload.getPaymentDetails());
} else if (filterManager.requireUpdateToNewVersionForTrading()) {
failed.handleErrorMessage("Your version of Bisq is not compatible for trading anymore. " +
"Please update to the latest Bisq version at https://bisq.network/downloads.");
} else {
complete.handleResult();
}