mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 23:08:07 +01:00
Fix example LndHub URI shown in settings
Replace invalid IP that is missing protocol and port with a valid example from the reserved IP address space (https://10.20.30.40:3000)
This commit is contained in:
parent
b24acb0f3f
commit
52b80c8503
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ const LightningSettings: React.FC & { navigationOptions: NavigationOptionsGetter
|
|||
<TextInput
|
||||
value={URI}
|
||||
placeholder={
|
||||
loc.formatString(loc.settings.electrum_host, { example: '111.222.333.111' }) +
|
||||
loc.formatString(loc.settings.electrum_host, { example: 'https://10.20.30.40:3000' }) +
|
||||
(isTorCapable ? ' (' + loc.settings.tor_supported + ')' : '')
|
||||
}
|
||||
onChangeText={setLndhubURI}
|
||||
|
|
Loading…
Add table
Reference in a new issue