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:
belikor 2021-07-05 22:07:39 -05:00 committed by Victor Shyba
parent 4db2b72351
commit 0cd953a6f3

View file

@ -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