Submit - document the notSupported error

Per https://github.com/ripple/rippled/pull/2657 some rippled servers no
longer support signing, so Sign-and-Submit mode has a possible error of
`notSupported`.

The change was introduced in rippled version 1.1.0 and merged via:

38c3a46a33

The error looks like:

            "name": "notSupported",
            "message": "Signing is not supported by this server.",
            "code": 75,
            ...
This commit is contained in:
Elliot Lee
2020-05-21 17:44:18 -07:00
parent 4b921c9628
commit 5988182145

View File

@@ -320,6 +320,7 @@ The response follows the [standard format][], with a successful result containin
* `invalidTransaction` - The transaction is malformed or otherwise invalid.
* `noPath` - The transaction did not include paths, and the server was unable to find a path by which this payment can occur. (Sign-and-Submit mode only)
* `tooBusy` - The transaction did not include paths, but the server is too busy to do pathfinding right now. Does not occur if you are connected as an admin. (Sign-and-Submit mode only)
* `notSupported` - Signing is not supported by this server. (Sign-and-Submit mode only)
<!--{# common link defs #}-->