Merge pull request #722 from shocknet/fix-find

fix find
This commit is contained in:
Justin (shocknet) 2024-08-29 16:42:59 -04:00 committed by GitHub
commit aba309943c

View file

@ -44,7 +44,7 @@ export class LiquidityStorage {
}
async GetTrackedProviders() {
return this.DB.getRepository(TrackedProvider).find()
return this.DB.getRepository(TrackedProvider).find({})
}
async GetTrackedProvider(providerType: 'lnd' | 'lnPub', pub: string) {