lib/active_merchant/billing/gateways/netpay.rb in activemerchant-1.85.0 vs lib/active_merchant/billing/gateways/netpay.rb in activemerchant-1.86.0
- old
+ new
@@ -108,10 +108,9 @@
def refund(money, authorization, options = {})
post = {}
add_order_id(post, order_id_from(authorization))
add_amount(post, money, options)
- #commit('Refund', post, options)
commit('Credit', post, options)
end
private