lib/active_merchant/billing/check.rb in activemerchant-1.58.0 vs lib/active_merchant/billing/check.rb in activemerchant-1.59.0
- old
+ new
@@ -48,9 +48,12 @@
def type
'check'
end
+ def credit_card?
+ false
+ end
# Routing numbers may be validated by calculating a checksum and dividing it by 10. The
# formula is:
# (3(d1 + d4 + d7) + 7(d2 + d5 + d8) + 1(d3 + d6 + d9))mod 10 = 0
# See http://en.wikipedia.org/wiki/Routing_transit_number#Internal_checksums
def valid_routing_number?