forked from LBRYCommunity/lbry-sdk
pylint
This commit is contained in:
parent
874b3faf8c
commit
fb2d7cbe28
1 changed files with 2 additions and 1 deletions
|
@ -445,7 +445,8 @@ class BaseDatabase(SQLiteMixin):
|
||||||
if 'order_by' not in constraints:
|
if 'order_by' not in constraints:
|
||||||
constraints['order_by'] = ["tx.height=0 DESC", "tx.height DESC", "tx.position DESC"]
|
constraints['order_by'] = ["tx.height=0 DESC", "tx.height DESC", "tx.position DESC"]
|
||||||
rows = await self.select_txos(
|
rows = await self.select_txos(
|
||||||
"tx.txid, raw, tx.height, tx.position, tx.is_verified, txo.position, chain, account", **constraints
|
"tx.txid, raw, tx.height, tx.position, tx.is_verified, txo.position, chain, account",
|
||||||
|
**constraints
|
||||||
)
|
)
|
||||||
txos = []
|
txos = []
|
||||||
txs = {}
|
txs = {}
|
||||||
|
|
Loading…
Reference in a new issue