From 5cdbb71277d38e01cdea563ee1ffc00fa808140c Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Thu, 16 Jun 2016 15:11:08 -0700 Subject: [PATCH] [DOC] fix transferRate description --- docs/index.md | 4 ++-- src/common/schemas/objects/settings.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.md b/docs/index.md index 780679c1..de7b97c6 100644 --- a/docs/index.md +++ b/docs/index.md @@ -498,7 +498,7 @@ signers | object | *Optional* Settings that determine what sets of accounts can *signers.* weights[] | object | An association of an address and a weight. *signers.weights[].* address | [address](#ripple-address) | A Ripple account address *signers.weights[].* weight | integer | The weight that the signature of this account counts as towards the threshold. -transferRate | number,null | *Optional* The fee to charge when users transfer this account’s issuances, represented as billionths of a unit. Use `null` to set no fee. +transferRate | number,null | *Optional* The fee to charge when users transfer this account’s issuances, as the decimal amount that must be sent to deliver 1 unit. Has precision up to 9 digits beyond the decimal point. Use `null` to set no fee. ### Example @@ -2684,7 +2684,7 @@ signers | object | *Optional* Settings that determine what sets of accounts can *signers.* weights[] | object | An association of an address and a weight. *signers.weights[].* address | [address](#ripple-address) | A Ripple account address *signers.weights[].* weight | integer | The weight that the signature of this account counts as towards the threshold. -transferRate | number,null | *Optional* The fee to charge when users transfer this account’s issuances, represented as billionths of a unit. Use `null` to set no fee. +transferRate | number,null | *Optional* The fee to charge when users transfer this account’s issuances, as the decimal amount that must be sent to deliver 1 unit. Has precision up to 9 digits beyond the decimal point. Use `null` to set no fee. ### Example diff --git a/src/common/schemas/objects/settings.json b/src/common/schemas/objects/settings.json index 2b4cad16..21ed6358 100644 --- a/src/common/schemas/objects/settings.json +++ b/src/common/schemas/objects/settings.json @@ -55,7 +55,7 @@ "description": " The domain that owns this account, as a hexadecimal string representing the ASCII for the domain in lowercase." }, "transferRate": { - "description": " The fee to charge when users transfer this account’s issuances, represented as billionths of a unit. Use `null` to set no fee.", + "description": " The fee to charge when users transfer this account’s issuances, as the decimal amount that must be sent to deliver 1 unit. Has precision up to 9 digits beyond the decimal point. Use `null` to set no fee.", "oneOf": [ {"type": "null"}, {"type": "number", "minimum": 1, "maximum": 4.294967295}