From fd5be69d55ee08bbc8d12761dab12705cc1be391 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 28 Apr 2020 12:26:17 -0400 Subject: [PATCH] lbry/wallet/server/db/{reader,fts} -> lbry/db --- lbry/{wallet/server => }/db/full_text_search.py | 0 lbry/{wallet/server/db/reader.py => db/search.py} | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename lbry/{wallet/server => }/db/full_text_search.py (100%) rename lbry/{wallet/server/db/reader.py => db/search.py} (99%) diff --git a/lbry/wallet/server/db/full_text_search.py b/lbry/db/full_text_search.py similarity index 100% rename from lbry/wallet/server/db/full_text_search.py rename to lbry/db/full_text_search.py diff --git a/lbry/wallet/server/db/reader.py b/lbry/db/search.py similarity index 99% rename from lbry/wallet/server/db/reader.py rename to lbry/db/search.py index b60990001..86b24f009 100644 --- a/lbry/wallet/server/db/reader.py +++ b/lbry/db/search.py @@ -16,7 +16,7 @@ from lbry.error import ResolveCensoredError from lbry.schema.url import URL, normalize_name from lbry.schema.tags import clean_tags from lbry.schema.result import Outputs, Censor -from lbry.wallet import Ledger, RegTestLedger +from lbry.blockchain.ledger import Ledger, RegTestLedger from .common import CLAIM_TYPES, STREAM_TYPES, COMMON_TAGS from .full_text_search import FTS_ORDER_BY