Skip to content

Commit

Permalink
script/checktrie: fix the import to SQLDB
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
belikor authored and shyba committed Jul 7, 2021
1 parent 4db2b72 commit 0cd953a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/checktrie.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
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

Expand Down

0 comments on commit 0cd953a

Please sign in to comment.