From c31798c7f8403cbf373e1a2936281132566bd7f6 Mon Sep 17 00:00:00 2001 From: Luke Burns Date: Fri, 3 Jul 2015 00:43:46 -0400 Subject: [PATCH] changed currency to USD in submit payment example --- docs/GUIDES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/GUIDES.md b/docs/GUIDES.md index d512230a..af69f05d 100644 --- a/docs/GUIDES.md +++ b/docs/GUIDES.md @@ -173,7 +173,7 @@ See the [wiki](https://ripple.com/wiki/JSON_Messages#subscribe) for details on s ##Submitting a payment to the network -Submitting a payment transaction to the Ripple network involves connecting to a `Remote`, creating a transaction, signing it with the user's secret, and submitting it to the `rippled` server. Note that the `Amount` module is used to convert human-readable amounts like '1XRP' or '10.50USD' to the type of Amount object used by the Ripple network. +Submitting a payment transaction to the Ripple network involves connecting to a `Remote`, creating a transaction, signing it with the user's secret, and submitting it to the `rippled` server. Note that the `Amount` module is used to convert human-readable amounts like '1 XRP' or '10.50 USD' to the type of Amount object used by the Ripple network. ```js /* Loading ripple-lib Remote and Amount modules in Node.js */ @@ -187,7 +187,7 @@ var Amount = require('ripple-lib').Amount; var MY_ADDRESS = 'rrrMyAddress'; var MY_SECRET = 'secret'; var RECIPIENT = 'rrrRecipient'; -var AMOUNT = Amount.from_human('1XRP').set_issuer('rrrIssuer'); +var AMOUNT = Amount.from_human('1 USD').set_issuer('rrrIssuer'); var remote = new Remote({ /* Remote options */ });