From 0cd953a6f3f11f20ba9fc55289a0b2e1b053de31 Mon Sep 17 00:00:00 2001 From: belikor Date: Mon, 5 Jul 2021 22:07:39 -0500 Subject: [PATCH] script/checktrie: fix the import to `SQLDB` This is nothing special, it just allows the module to run without throwing an error. From ``` from lbry.wallet.server.db import SQLDB ``` To ``` from lbry.wallet.server.db.writer import SQLDB ``` --- scripts/checktrie.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checktrie.py b/scripts/checktrie.py index 4fa4743c0..98770963a 100644 --- a/scripts/checktrie.py +++ b/scripts/checktrie.py @@ -2,7 +2,7 @@ import sys import asyncio from binascii import hexlify -from lbry.wallet.server.db import SQLDB +from lbry.wallet.server.db.writer import SQLDB from lbry.wallet.server.coin import LBC from lbry.wallet.server.daemon import Daemon