mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
don't use address_is_old in code that can be run offline (again)
This commit is contained in:
parent
042c65939d
commit
f9dad74e13
1 changed files with 1 additions and 1 deletions
|
@ -748,7 +748,7 @@ class ElectrumWindow(QMainWindow):
|
|||
def new_receive_address(self):
|
||||
domain = self.wallet.get_account_addresses(self.current_account, include_change=False)
|
||||
for addr in domain:
|
||||
if not self.wallet.address_is_old(addr) and addr not in self.receive_requests.keys():
|
||||
if not self.wallet.history.get(addr) and addr not in self.receive_requests.keys():
|
||||
break
|
||||
else:
|
||||
if isinstance(self.wallet, Imported_Wallet):
|
||||
|
|
Loading…
Add table
Reference in a new issue