From db89607e4e0ab2356dfe23625af063df3ff84e71 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Wed, 6 May 2020 10:50:29 -0400 Subject: [PATCH] added create_default_wallet and create_default_account conf options --- lbry/conf.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lbry/conf.py b/lbry/conf.py index 076b09565..b303d0fc9 100644 --- a/lbry/conf.py +++ b/lbry/conf.py @@ -518,6 +518,12 @@ class Config(CLIConfig): "Wallet files in 'wallet_dir' to load at startup.", ['default_wallet'] ) + create_default_wallet = Toggle( + "Create an initial wallet if it does not exist on startup.", True + ) + create_default_account = Toggle( + "Create an initial account if it does not exist in the default wallet.", True + ) # network use_upnp = Toggle(