mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
wallet.py: check_history depends on load_local_history and build_spent_outpoints
if it tries to call add_transaction
This commit is contained in:
parent
86e2f3f561
commit
b88f0434c5
1 changed files with 2 additions and 2 deletions
|
@ -215,10 +215,10 @@ class Abstract_Wallet(PrintError):
|
||||||
self.load_addresses()
|
self.load_addresses()
|
||||||
self.test_addresses_sanity()
|
self.test_addresses_sanity()
|
||||||
self.load_transactions()
|
self.load_transactions()
|
||||||
self.check_history()
|
|
||||||
self.load_unverified_transactions()
|
|
||||||
self.load_local_history()
|
self.load_local_history()
|
||||||
self.build_spent_outpoints()
|
self.build_spent_outpoints()
|
||||||
|
self.check_history()
|
||||||
|
self.load_unverified_transactions()
|
||||||
self.remove_local_transactions_we_dont_have()
|
self.remove_local_transactions_we_dont_have()
|
||||||
|
|
||||||
# there is a difference between wallet.up_to_date and interface.is_up_to_date()
|
# there is a difference between wallet.up_to_date and interface.is_up_to_date()
|
||||||
|
|
Loading…
Add table
Reference in a new issue