Fix typo
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Basti 2022-02-03 11:32:41 -06:00
parent e5aa5a665c
commit 1b17cfb396
Signed by untrusted user: basti
GPG Key ID: 9F88009D31D99C72

View File

@ -54,7 +54,7 @@ class LnurlpayController < ApplicationController
end end
def valid_amount?(amount_in_sats) def valid_amount?(amount_in_sats)
amount_sats <= MAX_SATS && amount_in_sats >= MIN_SATS amount_in_sats <= MAX_SATS && amount_in_sats >= MIN_SATS
end end
end end