From dcdd4d8fd6cc6997bce95edc11047d94d3291d21 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Wed, 26 Apr 2017 01:31:23 -0400 Subject: [PATCH] wallet config bug --- lbrynet/core/Wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/core/Wallet.py b/lbrynet/core/Wallet.py index 791fac047..9fdb698f0 100644 --- a/lbrynet/core/Wallet.py +++ b/lbrynet/core/Wallet.py @@ -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)