fix: incorrect balance in send card (#2158)

* fix: incorrect balance in send card

* fix: ensure that all unique Unspent are used in calculation
This commit is contained in:
cyan 2025-04-04 12:56:07 +02:00 committed by GitHub
parent e842e818d9
commit fd16a099ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 5 deletions

View file

@ -21,4 +21,9 @@ class Unspent with UnspentComparable {
bool get isP2wpkh =>
address.startsWith('bc') || address.startsWith('tb') || address.startsWith('ltc');
@override
String toString() {
return 'Unspent(address: $address, hash: $hash, value: $value, vout: $vout, keyImage: $keyImage, isSending: $isSending, isFrozen: $isFrozen, isChange: $isChange, note: $note)';
}
}