include paynym receiving addresses when checking for incoming transaction amounts

This commit is contained in:
julian 2023-01-26 15:22:39 -06:00
parent 828c301af7
commit 4170ca958f

View file

@ -19,6 +19,7 @@ mixin ElectrumXParsing {
Set<String> receivingAddresses = myAddresses
.where((e) =>
e.subType == AddressSubType.receiving ||
e.subType == AddressSubType.paynymReceive ||
e.subType == AddressSubType.paynymNotification)
.map((e) => e.value)
.toSet();