forked from LBRYCommunity/lbry-sdk
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 ```
This commit is contained in:
parent
4db2b72351
commit
0cd953a6f3
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ import sys
|
||||||
import asyncio
|
import asyncio
|
||||||
from binascii import hexlify
|
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.coin import LBC
|
||||||
from lbry.wallet.server.daemon import Daemon
|
from lbry.wallet.server.daemon import Daemon
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue