Skip to content

Commit

Permalink
Merge pull request #4 from lnbits/minmax
Browse files Browse the repository at this point in the history
fixed min max
  • Loading branch information
arcbtc authored Jun 14, 2024
2 parents 90b33e6 + 9c6bdee commit a9023f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lnurl.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ async def api_lnurl_pay(
"raisenow.api_lnurl_pay_callback", record_id=record_id
)
),
"maxSendable": 10000,
"minSendable": 1000000000,
"maxSendable": 1000000000,
"minSendable": 10000,
"metadata": '[["text/plain", "' + record.name + '"]]',
"tag": "payRequest",
}
Expand Down

0 comments on commit a9023f8

Please sign in to comment.