1
0

exchange_rate: FxThread does not need network

This commit is contained in:
SomberNight
2023-03-28 15:45:15 +00:00
parent f4e66810e7
commit 512b63c424
3 changed files with 5 additions and 6 deletions

View File

@@ -395,7 +395,7 @@ class Daemon(Logger):
self.network = None
if not config.get('offline'):
self.network = Network(config, daemon=self)
self.fx = FxThread(config, self.network)
self.fx = FxThread(config=config)
self.gui_object = None
# path -> wallet; make sure path is standardized.
self._wallets = {} # type: Dict[str, Abstract_Wallet]