Closed claddyy closed 1 month ago
https://github.com/SatoshiPortal/boltz-rust/blob/348a88136a5b5706a8964c44a2de2239ee0e7e31/src/util/lnurl.rs#L139
Here we were converting the amount from milli_satoshi to satoshi, but max_withdrawable returns us amount in satoshi. So it was fundamentally a wrong comparison. https://github.com/SatoshiPortal/boltz-rust/blob/348a88136a5b5706a8964c44a2de2239ee0e7e31/src/util/lnurl.rs#L147
milli_satoshi
satoshi
max_withdrawable
nit: Also includes minor change in error message.
https://github.com/SatoshiPortal/boltz-rust/blob/348a88136a5b5706a8964c44a2de2239ee0e7e31/src/util/lnurl.rs#L139
Here we were converting the amount from
milli_satoshi
tosatoshi
, butmax_withdrawable
returns us amount insatoshi
. So it was fundamentally a wrong comparison. https://github.com/SatoshiPortal/boltz-rust/blob/348a88136a5b5706a8964c44a2de2239ee0e7e31/src/util/lnurl.rs#L147nit: Also includes minor change in error message.