From 451fbfee2e3ce0d3579ef8e78dad2f77f3654fea Mon Sep 17 00:00:00 2001 From: Tyera Date: Wed, 11 Jan 2023 23:17:32 -0700 Subject: [PATCH] Update getRecentPrioritizationFees json-rpc docs (#29666) * Update getRecentPrioritizationFees json-rpc docs * Address review feedback * Remove minimum --- docs/src/developing/clients/jsonrpc-api.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/developing/clients/jsonrpc-api.md b/docs/src/developing/clients/jsonrpc-api.md index 3b18b0852f..58066fcc76 100644 --- a/docs/src/developing/clients/jsonrpc-api.md +++ b/docs/src/developing/clients/jsonrpc-api.md @@ -2125,20 +2125,20 @@ Result: ### getRecentPrioritizationFees -Returns a list of minimum prioritization fees from recent blocks. Currently, a +Returns a list of prioritization fees from recent blocks. Currently, a node's prioritization-fee cache stores data from up to 150 blocks. #### Parameters: -- `` - (optional) An array of account address strings. If this parameter is provided, the response will reflect the minimum prioritization fee to land a transaction locking all of the provided accounts as writable. +- `` - (optional) An array of account address strings (up to a maximum of 128 addresses). If this parameter is provided, the response will reflect a fee to land a transaction locking all of the provided accounts as writable. #### Results: An array of: - `RpcPrioritizationFee` - - `slot: ` - Slot in which minimum fee was observed - - `prioritizationFee: ` - Minimum fee paid for a successfully landed transaction + - `slot: ` - Slot in which fee was observed + - `prioritizationFee: ` - a fee paid by at least one successfully landed transaction, specified in increments of 0.000001 lamports #### Example: