mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +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,
|
||||
myNotificationAddress: myAddress,
|
||||
);
|
||||
if (unBlinded != null) {
|
||||
if (unBlinded != null &&
|
||||
unBlindedList
|
||||
.where((e) => e.toString() == unBlinded.toString())
|
||||
.isEmpty) {
|
||||
unBlindedList.add(unBlinded);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue