mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-31 15:59:26 +00:00
display "transparent" instead of "p2pkh" on firo address type
This commit is contained in:
parent
8a076a8d5b
commit
bf14dd09f4
1 changed files with 5 additions and 1 deletions
|
@ -394,7 +394,11 @@ class _ReceiveViewState extends ConsumerState<ReceiveView> {
|
|||
DropdownMenuItem(
|
||||
value: i,
|
||||
child: Text(
|
||||
"${_walletAddressTypes[i].readableName} address",
|
||||
_supportsSpark &&
|
||||
_walletAddressTypes[i] ==
|
||||
AddressType.p2pkh
|
||||
? "Transparent address"
|
||||
: "${_walletAddressTypes[i].readableName} address",
|
||||
style: STextStyles.w500_14(context),
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue