forked from LBRYCommunity/lbry-sdk
wallet config bug
This commit is contained in:
parent
c525c8f5d1
commit
dcdd4d8fd6
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue