From 569e207a38c44d74e75e3adc27cffe2616ae793f Mon Sep 17 00:00:00 2001 From: John Marshall Date: Mon, 9 Jul 2012 15:31:17 -0300 Subject: [PATCH] CreateCharge(..) takes 'amount' in dollars not cents. --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 8ef075a..031c53b 100644 --- a/README.markdown +++ b/README.markdown @@ -25,7 +25,7 @@ var card = new CreditCard { }; dynamic response = api.CreateCharge( - amount: 10000, // $100 + amount: 100, // $100 currency: "usd", card: card);