Update litecoin_wallet_addresses.dart

Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
This commit is contained in:
Matthew Fosse 2024-10-31 20:08:50 -07:00 committed by GitHub
parent 7f862d8c5c
commit 35d7909a0e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -205,8 +205,7 @@ abstract class LitecoinWalletAddressesBase extends ElectrumWalletAddresses with
String get addressForExchange {
// don't use mweb addresses for exchange refund address:
final addresses = receiveAddresses
.where((element) => element.type == SegwitAddresType.p2wpkh)
.where((addr) => !addr.isUsed);
.where((element) => element.type == SegwitAddresType.p2wpkh && !element.isUsed);
return addresses.first.address;
}
}