From 445c9091bd5e92ef07b62a2e9a5749245f49c048 Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Mon, 6 Mar 2023 13:51:09 -0500 Subject: [PATCH] Customer cc limit to 130 --- lib/trust_level.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/trust_level.rb b/lib/trust_level.rb index 11ef8dac509ddc577fe30f67d74e71d3912dca5a..df2a6943bb3a23fbcf7839c9470e50a4979c7c76 100644 --- a/lib/trust_level.rb +++ b/lib/trust_level.rb @@ -142,7 +142,7 @@ module TrustLevel end def credit_card_transaction?(amount, declines) - amount <= 100 && declines <= 2 + amount <= 130 && declines <= 2 end def to_s