From 87094fc83f7ede4a6d4d056c5987d2ae6f9b3663 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 17 Aug 2021 15:47:18 -0400 Subject: [PATCH] changed default setting save_files to be false --- lbry/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/conf.py b/lbry/conf.py index 480be87ab..d29b76237 100644 --- a/lbry/conf.py +++ b/lbry/conf.py @@ -704,7 +704,7 @@ class Config(CLIConfig): blockchain_name = String("Blockchain name - lbrycrd_main, lbrycrd_regtest, or lbrycrd_testnet", 'lbrycrd_main') # daemon - save_files = Toggle("Save downloaded files when calling `get` by default", True) + save_files = Toggle("Save downloaded files when calling `get` by default", False) components_to_skip = Strings("components which will be skipped during start-up of daemon", []) share_usage_data = Toggle( "Whether to share usage stats and diagnostic info with LBRY.", False,