From fbbb0a99311c7fced62fd2085492c8d5a0877ba9 Mon Sep 17 00:00:00 2001 From: Oleg Silkin Date: Sun, 7 Apr 2019 14:37:32 -0400 Subject: [PATCH] Adds server URL to configuration settings --- lbrynet/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lbrynet/conf.py b/lbrynet/conf.py index 7030d502e..81fe6df71 100644 --- a/lbrynet/conf.py +++ b/lbrynet/conf.py @@ -528,6 +528,9 @@ class Config(CLIConfig): ('lbrynet4.lbry.io', 4444) # ASIA ]) + # comment server uses a single string because requests are made to the /api resource + comment_server = String("Server to store user-generated metadata.", "http://comments.lbry.com:2903/api") + # blockchain blockchain_name = String("Blockchain name - lbrycrd_main, lbrycrd_regtest, or lbrycrd_testnet", 'lbrycrd_main') s3_headers_depth = Integer("download headers from s3 when the local height is more than 10 chunks behind", 96 * 10)