From 66152a8f93a20500e87f296681e4b68ae9cd3a7b Mon Sep 17 00:00:00 2001 From: Kay Kurokawa Date: Mon, 11 Sep 2017 11:34:26 -0400 Subject: [PATCH 1/2] turn on head blob announce seek for clients --- lbrynet/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/conf.py b/lbrynet/conf.py index 9fde690ad..8cacc41af 100644 --- a/lbrynet/conf.py +++ b/lbrynet/conf.py @@ -255,7 +255,7 @@ ADJUSTABLE_SETTINGS = { 'known_dht_nodes': (list, DEFAULT_DHT_NODES, server_port), 'lbryum_wallet_dir': (str, default_lbryum_dir), 'max_connections_per_stream': (int, 5), - 'seek_head_blob_first': (bool, False), + 'seek_head_blob_first': (bool, True), # TODO: writing json on the cmd line is a pain, come up with a nicer # parser for this data structure. maybe 'USD:25' 'max_key_fee': (json.loads, {'currency': 'USD', 'amount': 50.0}), From 70868767f7bd07dd839ce39ab9e3f4d063ea9d8d Mon Sep 17 00:00:00 2001 From: Kay Kurokawa Date: Mon, 11 Sep 2017 11:43:46 -0400 Subject: [PATCH 2/2] add changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67899a4f0..ce4e548b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ at anytime. ### Added * Added option to announce head blob only if seeding * Added option to download by seeking head blob first + * By default, option to download seeking head blob first is turned on * Added `include_tip_info` param to `transaction_list` API call *