From 41a7df33fca303549dadd41db7c3d5744d94efda Mon Sep 17 00:00:00 2001 From: Jennifer Hasegawa Date: Fri, 11 May 2018 18:22:40 -0700 Subject: [PATCH] revert link fix --- .../transaction-basics/transaction-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/concepts/payment-system-basics/transaction-basics/transaction-basics.md b/content/concepts/payment-system-basics/transaction-basics/transaction-basics.md index c4d543ee81..9b499f2681 100644 --- a/content/concepts/payment-system-basics/transaction-basics/transaction-basics.md +++ b/content/concepts/payment-system-basics/transaction-basics/transaction-basics.md @@ -75,7 +75,7 @@ Here is an example of an unsigned [Payment transaction][] in JSON: The XRP Ledger only relays and executes a transaction if the transaction object has been authorized by the sending address (in the `Account`) field. For transactions authorized by only a single signature, you have two options: 1. Convert it to a binary blob and sign it offline. This is preferable, since it means that the account secret used for signing the transaction is never transmitted over any network connection. - * You can use [RippleAPI](sign.html) for offline signing. + * You can use [RippleAPI](reference-rippleapi.html#sig) for offline signing. 2. Have a `rippled` server sign the transaction for you. The [sign command](sign.html) takes a JSON-format transaction and secret and returns the signed binary transaction format ready for submission. (Transmitting your account secret is dangerous, so you should only do this from within a trusted and encrypted connection, or through a local connection, and only to a server you control.) * As a shortcut, you can use the [submit command](submit.html) with a `tx_json` object to sign and submit a transaction all at once. This is only recommended for testing and development purposes.