From a12aa706bbd8f924067786fcb32ce2032e2f3980 Mon Sep 17 00:00:00 2001 From: sorenstoutner Date: Sat, 8 Nov 2025 16:57:29 -0700 Subject: [PATCH] Fix indeces -> indices typo --- content/_guides/nodes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/_guides/nodes.md b/content/_guides/nodes.md index 30b1c87..be31f28 100644 --- a/content/_guides/nodes.md +++ b/content/_guides/nodes.md @@ -53,7 +53,7 @@ During normal use the wallet will use the following endpoints: |/get_transaction_pool_hashes.bin| Sync | Get tx hashes from transaction pool. Called every 10 seconds after main sync is finished. | |/get_transactions| Sync | Get pool transactions the wallet hasn't scanned before. | |/get_output_distribution| Tx Construction | Output distribution used in decoy selection. Data is hashed and checked against a hardcoded value to mitigate against output distribution poisoning.
In Feather, the distribution is requested and cached immediately upon finishing wallet synchronization to cut bandwidth requirements for transaction construction by an order of magnitude. | -|/get_outs.bin| Tx Construction | Request output public keys for selected indeces of ring members. The wallet cannot verify the validity of the public keys, except for the true input. Feather will show a warning if the true input is missing from the response. | +|/get_outs.bin| Tx Construction | Request output public keys for selected indices of ring members. The wallet cannot verify the validity of the public keys, except for the true input. Feather will show a warning if the true input is missing from the response. | |get_fee_estimate| Tx Construction | Get base transaction fee. Malicious nodes can introduce a fungibility defect by providing an incorrect fee estimate. | |hard_fork_info | Tx Construction | Get information about hard fork state. | |/send_raw_transaction | Tx Broadcast | Instruct the node to broadcast the transcation to the network. |