mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-25 11:45:59 +00:00
ignore duplicate unblinded codes
This commit is contained in:
parent
04854582ae
commit
c8783bb032
1 changed files with 4 additions and 1 deletions
|
@ -702,7 +702,10 @@ mixin PaynymWalletInterface {
|
||||||
transaction: tx,
|
transaction: tx,
|
||||||
myNotificationAddress: myAddress,
|
myNotificationAddress: myAddress,
|
||||||
);
|
);
|
||||||
if (unBlinded != null) {
|
if (unBlinded != null &&
|
||||||
|
unBlindedList
|
||||||
|
.where((e) => e.toString() == unBlinded.toString())
|
||||||
|
.isEmpty) {
|
||||||
unBlindedList.add(unBlinded);
|
unBlindedList.add(unBlinded);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue