mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
Fix QR scheme to compare with currency full name not the abbreviated one
This commit is contained in:
parent
33337f42d0
commit
ddd5b1ecb3
1 changed files with 2 additions and 1 deletions
|
@ -180,7 +180,8 @@ abstract class SendViewModelBase with Store {
|
||||||
|
|
||||||
WalletType get walletType => _wallet.type;
|
WalletType get walletType => _wallet.type;
|
||||||
|
|
||||||
String? get walletCurrencyName => _wallet.currency.name?.toLowerCase();
|
String? get walletCurrencyName =>
|
||||||
|
_wallet.currency.fullName?.toLowerCase() ?? _wallet.currency.name;
|
||||||
|
|
||||||
bool get hasCurrecyChanger => walletType == WalletType.haven;
|
bool get hasCurrecyChanger => walletType == WalletType.haven;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue