mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 17:55:20 +00:00
update messages
This commit is contained in:
parent
4cab1db01d
commit
dac60f9b91
1 changed files with 2 additions and 2 deletions
|
@ -837,14 +837,14 @@ class BitcoinGUI:
|
||||||
if auth_name is None:
|
if auth_name is None:
|
||||||
a = self.wallet.aliases.get(alias)
|
a = self.wallet.aliases.get(alias)
|
||||||
if not a:
|
if not a:
|
||||||
if interactive and self.question( "Warning: the alias '%s' is unsigned. Do you want to trust the address %s ?"%(alias,signing_address) ):
|
if interactive and self.question( "Warning: the alias '%s' is unsigned. Do you want to trust the address %s for this alias?"%(alias,signing_address) ):
|
||||||
self.wallet.aliases[alias] = signing_address
|
self.wallet.aliases[alias] = signing_address
|
||||||
self.wallet.labels[target] = alias
|
self.wallet.labels[target] = alias
|
||||||
else:
|
else:
|
||||||
target = None
|
target = None
|
||||||
else:
|
else:
|
||||||
if signing_address != a:
|
if signing_address != a:
|
||||||
if interactive and self.question( "Warning: the signing key of %s does not match its previously known value! It is possible that someone is trying to do something nasty!!!\nDo you wish to accept the new key?"%alias ):
|
if interactive and self.question( "Warning: the key of alias '%s' has changed since your last visit! It is possible that someone is trying to do something nasty!!!\nDo you accept to change your trusted key?"%alias ):
|
||||||
self.wallet.aliases[alias] = signing_address
|
self.wallet.aliases[alias] = signing_address
|
||||||
self.wallet.labels[target] = alias
|
self.wallet.labels[target] = alias
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue