wallet config bug

This commit is contained in:
Jack Robison 2017-04-26 01:31:23 -04:00
parent c525c8f5d1
commit dcdd4d8fd6

View file

@ -868,6 +868,7 @@ class LBRYumWallet(Wallet):
def __init__(self, storage, config=None):
Wallet.__init__(self, storage)
self._config = config
self.config = make_config(self._config)
self.network = None
self.wallet = None
self.is_first_run = False
@ -885,7 +886,6 @@ class LBRYumWallet(Wallet):
def _start(self):
network_start_d = defer.Deferred()
self.config = make_config(self._config)
def setup_network():
self.network = Network(self.config)