mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-16 12:20:14 +02:00
fix: send_coins crash when calling CLN RPC
This commit is contained in:
parent
e290de8933
commit
9f8631c581
1 changed files with 1 additions and 1 deletions
|
|
@ -511,7 +511,7 @@ class LnNodeCLNjRPC(LightningNodeBase):
|
|||
|
||||
amt = "all" if input.send_all else input.amount
|
||||
|
||||
params = [input.address, input.amount, fee_rate]
|
||||
params = [input.address, amt, fee_rate]
|
||||
res = await self._send_request("withdraw", params)
|
||||
|
||||
if not "error" in res:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue