fix spelling mistake for auto connect
This commit is contained in:
parent
e03db79f79
commit
896a16c15d
1 changed files with 1 additions and 1 deletions
|
@ -798,7 +798,7 @@ class Daemon(AuthJSONRPCServer):
|
||||||
d = defer.succeed(wallet)
|
d = defer.succeed(wallet)
|
||||||
elif self.wallet_type == LBRYUM_WALLET:
|
elif self.wallet_type == LBRYUM_WALLET:
|
||||||
log.info("Using lbryum wallet")
|
log.info("Using lbryum wallet")
|
||||||
config = {'auto-connect': True}
|
config = {'auto_connect': True}
|
||||||
if lbrynet_settings.lbryum_wallet_dir:
|
if lbrynet_settings.lbryum_wallet_dir:
|
||||||
config['lbryum_path'] = lbrynet_settings.lbryum_wallet_dir
|
config['lbryum_path'] = lbrynet_settings.lbryum_wallet_dir
|
||||||
d = defer.succeed(LBRYumWallet(self.db_dir, config))
|
d = defer.succeed(LBRYumWallet(self.db_dir, config))
|
||||||
|
|
Loading…
Reference in a new issue