forked from LBRYCommunity/lbry-sdk
windows doesnt have json_group_object sqlite function available, switching to group_concat
This commit is contained in:
parent
835d376ca6
commit
6c6050528a
1 changed files with 2 additions and 3 deletions
|
@ -1,6 +1,5 @@
|
||||||
import logging
|
import logging
|
||||||
import asyncio
|
import asyncio
|
||||||
import json
|
|
||||||
from binascii import hexlify
|
from binascii import hexlify
|
||||||
from concurrent.futures.thread import ThreadPoolExecutor
|
from concurrent.futures.thread import ThreadPoolExecutor
|
||||||
|
|
||||||
|
@ -532,7 +531,7 @@ class BaseDatabase(SQLiteMixin):
|
||||||
rows = await self.select_txos(
|
rows = await self.select_txos(
|
||||||
"""
|
"""
|
||||||
tx.txid, raw, tx.height, tx.position, tx.is_verified, txo.position, amount, script, (
|
tx.txid, raw, tx.height, tx.position, tx.is_verified, txo.position, amount, script, (
|
||||||
select json_group_object(account, chain) from account_address
|
select group_concat(account||"|"||chain) from account_address
|
||||||
where account_address.address=txo.address
|
where account_address.address=txo.address
|
||||||
)
|
)
|
||||||
""",
|
""",
|
||||||
|
@ -555,7 +554,7 @@ class BaseDatabase(SQLiteMixin):
|
||||||
row[1], height=row[2], position=row[3], is_verified=row[4]
|
row[1], height=row[2], position=row[3], is_verified=row[4]
|
||||||
)
|
)
|
||||||
txo = txs[row[0]].outputs[row[5]]
|
txo = txs[row[0]].outputs[row[5]]
|
||||||
row_accounts = json.loads(row[8])
|
row_accounts = dict([a.split('|') for a in row[8].split(',')])
|
||||||
account_match = set(row_accounts) & my_accounts
|
account_match = set(row_accounts) & my_accounts
|
||||||
if account_match:
|
if account_match:
|
||||||
txo.is_my_account = True
|
txo.is_my_account = True
|
||||||
|
|
Loading…
Reference in a new issue