mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
Merge pull request #2162 from shsmith/master
fix AttributeError: 'Standard_Wallet' object has no attribute 'account'
This commit is contained in:
commit
20ed54c22b
1 changed files with 1 additions and 1 deletions
|
@ -1459,7 +1459,7 @@ class Deterministic_Wallet(Abstract_Wallet):
|
||||||
# fixme: this assumes wallet is synchronized
|
# fixme: this assumes wallet is synchronized
|
||||||
n = 0
|
n = 0
|
||||||
nmax = 0
|
nmax = 0
|
||||||
addresses = self.account.get_receiving_addresses()
|
addresses = self.get_receiving_addresses()
|
||||||
k = self.num_unused_trailing_addresses(addresses)
|
k = self.num_unused_trailing_addresses(addresses)
|
||||||
for a in addresses[0:-k]:
|
for a in addresses[0:-k]:
|
||||||
if self.history.get(a):
|
if self.history.get(a):
|
||||||
|
|
Loading…
Add table
Reference in a new issue