recursive channel lookup

This commit is contained in:
Lex Berezhny 2018-10-30 16:20:43 -04:00
parent 485d5d55e8
commit 3ce9f31f4b

View file

@ -64,7 +64,7 @@ class WalletDatabase(BaseDatabase):
if channel_ids:
channels = {
txo.claim_id: txo for txo in
(await super().get_utxos(
(await self.get_claims(
my_account=my_account,
claim_id__in=channel_ids
))