Browse Source

label invalid notification transactions and avoid relink attempts

terminal
Craig Raw 3 years ago
parent
commit
04cb27f85e
  1. 2
      drongo
  2. 6
      src/main/java/com/sparrowwallet/sparrow/paynym/PayNymController.java

2
drongo

@ -1 +1 @@
Subproject commit 04631be8c10bf0ef72ebd7f7ef26254cccecb282
Subproject commit 640176153016e6b38b367d6d7e37ecf15cfee745

6
src/main/java/com/sparrowwallet/sparrow/paynym/PayNymController.java

@ -43,6 +43,7 @@ public class PayNymController {
private static final Logger log = LoggerFactory.getLogger(PayNymController.class);
public static final Pattern PAYNYM_REGEX = Pattern.compile("\\+[a-z]+[0-9][0-9a-fA-F][0-9a-fA-F]");
public static final String INVALID_PAYMENT_CODE_LABEL = "Invalid Payment Code";
private String walletId;
private boolean selectLinkedOnly;
@ -344,7 +345,7 @@ public class PayNymController {
if(!isLinked(payNym)) {
PaymentCode externalPaymentCode = payNym.paymentCode();
Map<BlockTransaction, WalletNode> unlinkedNotification = getMasterWallet().getNotificationTransaction(externalPaymentCode);
if(!unlinkedNotification.isEmpty()) {
if(!unlinkedNotification.isEmpty() && !INVALID_PAYMENT_CODE_LABEL.equals(unlinkedNotification.keySet().iterator().next().getLabel())) {
unlinkedNotifications.putAll(unlinkedNotification);
unlinkedPayNyms.put(unlinkedNotification.keySet().iterator().next(), payNym);
}
@ -397,6 +398,9 @@ public class PayNymController {
byte[] opReturnData = PaymentCode.getOpReturnData(blockTransaction.getTransaction());
if(Arrays.equals(opReturnData, blindedPaymentCode)) {
addedWallets.addAll(addChildWallets(payNym, externalPaymentCode));
} else {
blockTransaction.setLabel(INVALID_PAYMENT_CODE_LABEL);
EventManager.get().post(new WalletEntryLabelsChangedEvent(input0Node.getWallet(), new TransactionEntry(input0Node.getWallet(), blockTransaction, Collections.emptyMap(), Collections.emptyMap())));
}
} catch(Exception e) {
log.error("Error adding linked contact from notification transaction", e);

Loading…
Cancel
Save