From 1b17cfb396d866896e9287aadec6071371514745 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Thu, 3 Feb 2022 11:32:41 -0600 Subject: [PATCH] Fix typo --- app/controllers/lnurlpay_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/lnurlpay_controller.rb b/app/controllers/lnurlpay_controller.rb index 9d192e6..f042919 100644 --- a/app/controllers/lnurlpay_controller.rb +++ b/app/controllers/lnurlpay_controller.rb @@ -54,7 +54,7 @@ class LnurlpayController < ApplicationController end 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