Skip to content

Commit

Permalink
Fix CLNRest return model (#494)
Browse files Browse the repository at this point in the history
* returs different model

* new way to get local balance
  • Loading branch information
callebtc authored Mar 26, 2024
1 parent 3feb023 commit e040479
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cashu/lightning/corelightningrest.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async def cleanup(self):
logger.warning(f"Error closing wallet connection: {e}")

async def status(self) -> StatusResponse:
r = await self.client.get(f"{self.url}/v1/channel/localremotebal", timeout=5)
r = await self.client.get(f"{self.url}/v1/listFunds", timeout=5)
r.raise_for_status()
if r.is_error or "error" in r.json():
try:
Expand All @@ -88,7 +88,7 @@ async def status(self) -> StatusResponse:
data = r.json()
if len(data) == 0:
return StatusResponse(error_message="no data", balance=0)
balance_msat = int(data.get("localBalance") * 1000)
balance_msat = int(sum([c["our_amount_msat"] for c in data["channels"]]))
return StatusResponse(error_message=None, balance=balance_msat)

async def create_invoice(
Expand Down Expand Up @@ -212,7 +212,7 @@ async def pay_invoice(

checking_id = data["payment_hash"]
preimage = data["payment_preimage"]
fee_msat = data["msatoshi_sent"] - data["msatoshi"]
fee_msat = data["amount_sent_msat"] - data["amount_msat"]

return PaymentResponse(
ok=self.statuses.get(data["status"]),
Expand Down

0 comments on commit e040479

Please sign in to comment.