From d2ed963087ed952c589f62a40ed6a879ec8a2ba5 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sun, 16 Oct 2022 20:50:39 +0100 Subject: [PATCH] devguides: correct suggested_confirmation_threshold def. --- resources/developer-guides/wallet-rpc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/developer-guides/wallet-rpc.md b/resources/developer-guides/wallet-rpc.md index 0a62fcce..b40268ef 100644 --- a/resources/developer-guides/wallet-rpc.md +++ b/resources/developer-guides/wallet-rpc.md @@ -1924,7 +1924,7 @@ Outputs: * *subaddr_indices* - array; list of indices if multiple where requested. * *major* - unsigned int; Account index for the subaddress. * *minor* - unsigned int; Index of the subaddress under the account. - * *suggested_confirmations_threshold* - unsigned int; Estimation of the confirmations needed for the transaction to be included in a block. + * *suggested_confirmations_threshold* - unsigned int; Number of confirmations needed for the amount received to be lower than the accumulated block reward (or close to that). * *timestamp* - unsigned int; POSIX timestamp for when this transfer was first confirmed in a block (or timestamp submission if not mined yet). * *txid* - string; Transaction ID for this transfer. * *type* - string; Transfer type: "in" @@ -2005,7 +2005,7 @@ Outputs: * *subaddr_index* - JSON object containing the major & minor subaddress index: * *major* - unsigned int; Account index for the subaddress. * *minor* - unsigned int; Index of the subaddress under the account. - * *suggested_confirmations_threshold* - unsigned int; Estimation of the confirmations needed for the transaction to be included in a block. + * *suggested_confirmations_threshold* - unsigned int; Number of confirmations needed for the amount received to be lower than the accumulated block reward (or close to that). * *timestamp* - unsigned int; POSIX timestamp for the block that confirmed this transfer (or timestamp submission if not mined yet). * *txid* - string; Transaction ID of this transfer (same as input TXID). * *type* - string; Type of transfer, one of the following: "in", "out", "pending", "failed", "pool"