Skip to content

Commit

Permalink
CreateCharge(..) takes 'amount' in dollars not cents.
Browse files Browse the repository at this point in the history
  • Loading branch information
swax committed Jul 9, 2012
1 parent 4adf7b9 commit 569e207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.markdown
Expand Up @@ -25,7 +25,7 @@ var card = new CreditCard {
};

dynamic response = api.CreateCharge(
amount: 10000, // $100
amount: 100, // $100
currency: "usd",
card: card);

Expand Down

0 comments on commit 569e207

Please sign in to comment.