fix lsp url

This commit is contained in:
boufni95 2024-06-18 19:53:00 +02:00
parent b3808203cf
commit aeb5407206

View file

@ -220,7 +220,7 @@ export class OlympusLSP extends LSP {
}
getInfo = async () => {
const res = await fetch(`${this.settings.olympusServiceUrl}/getinfo`)
const res = await fetch(`${this.settings.olympusServiceUrl}/get_info`)
const json = await res.json() as { options: { min_initial_client_balance_sat: string, max_channel_expiry_blocks: number }, uris: string[] }
return json
}