From 87a62e5ec247a771055b862aa8d1b58c3a5c61da Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Tue, 27 Oct 2015 14:29:32 -0700 Subject: [PATCH] rippled - fix parsing error with | in currency code definition --- content/rippled.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/rippled.md b/content/rippled.md index 3a5efffdbd..379132f8ff 100644 --- a/content/rippled.md +++ b/content/rippled.md @@ -359,7 +359,7 @@ If you are specifying non-XRP currency (including fiat dollars, precious metals, | Field | Type | Description | |-------|------|-------------| -| currency | String | 3-character currency code. We recommend using uppercase [ISO 4217 Currency Codes](http://www.xe.com/iso4217.php) only. The string `"XRP"` is disallowed. The following characters are permitted: all uppercase and lowercase letters, digits, and `<>(){}[]|?!@#$%^&*`. Can also be a 40-character hex value according to the internal [Currency format](https://wiki.ripple.com/Currency_format). | +| currency | String | 3-character currency code. We recommend using uppercase [ISO 4217 Currency Codes](http://www.xe.com/iso4217.php) only. The string `"XRP"` is disallowed. The following characters are permitted: all uppercase and lowercase letters, digits, as well as the symbols `?`, `!`, `@`, `#`, `$`, `%`, `^`, `&`, `*`, `<`, `>`, `(`, `)`, `{`, `}`, `[`, `]`, and |. Instead of a 3-character code, this field could also be a 40-character hex value according to the internal [Currency format](https://wiki.ripple.com/Currency_format). | | value | String | Quoted decimal representation of the amount of currency | | issuer | String | Unique account address of the entity issuing the currency. In other words, the person or business where the currency can be redeemed. |