mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Remove addressAsString null check. That was when the donationAddress got added to support not updated nodes. Now there are none of such nodes.
Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
This commit is contained in:
parent
710dba9f36
commit
0bf44f061d
1 changed files with 0 additions and 5 deletions
|
@ -67,11 +67,6 @@ public class DisputeValidation {
|
|||
public static void validateDonationAddress(Dispute dispute, String addressAsString, DaoFacade daoFacade)
|
||||
throws AddressException {
|
||||
|
||||
if (addressAsString == null) {
|
||||
log.debug("address is null at validateDonationAddress. This is expected in case of an not updated trader.");
|
||||
return;
|
||||
}
|
||||
|
||||
Set<String> allPastParamValues = daoFacade.getAllDonationAddresses();
|
||||
if (!allPastParamValues.contains(addressAsString)) {
|
||||
String errorMsg = "Donation address is not a valid DAO donation address." +
|
||||
|
|
Loading…
Add table
Reference in a new issue