From 9058201de01e7fcee7de0318f0572e05f147b301 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Thu, 17 Oct 2019 14:10:30 -0400 Subject: [PATCH] update download_blob_from_peer.py --- lbry/scripts/download_blob_from_peer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/scripts/download_blob_from_peer.py b/lbry/scripts/download_blob_from_peer.py index a501edbbc..08f046abc 100644 --- a/lbry/scripts/download_blob_from_peer.py +++ b/lbry/scripts/download_blob_from_peer.py @@ -32,7 +32,7 @@ async def main(blob_hash: str, url: str): host = host_info[0][4][0] storage = SQLiteStorage(conf, os.path.join(conf.data_dir, "lbrynet.sqlite")) - blob_manager = BlobManager(loop, os.path.join(conf.data_dir, "blobfiles"), storage) + blob_manager = BlobManager(loop, os.path.join(conf.data_dir, "blobfiles"), storage, conf) await storage.open() await blob_manager.setup()