Customer cc limit to 130

Stephen Paul Weber created

Change summary

lib/trust_level.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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