mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-04 21:05:11 +00:00
follow-up a830747f83
on_history expects fewer arguments than what the fee_histogram callback gives
This commit is contained in:
parent
61aa19539c
commit
579d48cf0c
1 changed files with 4 additions and 1 deletions
|
@ -159,6 +159,9 @@ class ElectrumWindow(App):
|
|||
Logger.info("on_history")
|
||||
self._trigger_update_history()
|
||||
|
||||
def on_fee_histogram(self, *args):
|
||||
self._trigger_update_history()
|
||||
|
||||
def _get_bu(self):
|
||||
decimal_point = self.electrum_config.get('decimal_point', 5)
|
||||
return decimal_point_to_base_unit_name(decimal_point)
|
||||
|
@ -483,7 +486,7 @@ class ElectrumWindow(App):
|
|||
interests = ['updated', 'status', 'new_transaction', 'verified', 'interfaces']
|
||||
self.network.register_callback(self.on_network_event, interests)
|
||||
self.network.register_callback(self.on_fee, ['fee'])
|
||||
self.network.register_callback(self.on_history, ['fee_histogram'])
|
||||
self.network.register_callback(self.on_fee_histogram, ['fee_histogram'])
|
||||
self.network.register_callback(self.on_quotes, ['on_quotes'])
|
||||
self.network.register_callback(self.on_history, ['on_history'])
|
||||
# load wallet
|
||||
|
|
Loading…
Add table
Reference in a new issue