Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandra Tran Carrillo <12214231+alexandratran@users.noreply.github.com>
  • Loading branch information
alexandratran authored Nov 22, 2023
1 parent 325b4cd commit 1c528f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/public-networks/reference/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5465,7 +5465,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"miner_changeTargetGasLimit","par
### `miner_getMinPriorityFee`
Gets the minimum priority fee per gas (in Wei) offered by a transaction offers to be included in a block. The initial value is set using the [`--min-priority-fee`](../cli/options.md#min-priority-fee) command line option, or defaults to 0, if the command line option is not specified.
Gets the minimum priority fee per gas (in Wei) offered by a transaction to be included in a block. The initial value is set using the [`--min-priority-fee`](../cli/options.md#min-priority-fee) command line option, or is set to `0` if the command line option is not specified.
Use [`miner_setMinPriorityFee`](#minersetminpriorityfee) to change the current value of the fee.
#### Parameters
Expand All @@ -5474,7 +5474,7 @@ None
#### Returns
`result`: _string_ - Minimum priority fee per gas (in Wei) in hexadecimal
`result`: _string_ - Minimum priority fee per gas (in Wei) as a hexadecimal string
<!--tabs-->
Expand Down Expand Up @@ -5557,7 +5557,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"miner_setCoinbase","params":["0x
### `miner_setMinPriorityFee`
Sets the minimum priority fee per gas (in Wei) offered by a transaction offers to be included in a block. The initial value is set using the [`--min-priority-fee`](../cli/options.md#min-priority-fee) command line option, or defaults to 0, if the command line option is not specified.
Sets the minimum priority fee per gas (in Wei) offered by a transaction to be included in a block. The initial value is set using the [`--min-priority-fee`](../cli/options.md#min-priority-fee) command line option, or is set to `0` if the command line option is not specified.
Use [`miner_getMinPriorityFee`](#minergetminpriorityfee) to get the current value of the fee.
#### Parameters
Expand Down
4 changes: 2 additions & 2 deletions docs/public-networks/reference/cli/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -1903,9 +1903,9 @@ min-priority-fee=7

<!--/tabs-->

The minimum priority fee per gas (in Wei) offered by a transaction offers to be included in a block. The default is 0 Wei.
The minimum priority fee per gas (in Wei) offered by a transaction to be included in a block. The default is `0`.
For a running node, use:
* [`miner_getMinPriorityFee`](../api/index.md#minergetminpriorityfee) to get the value
* [`miner_getMinPriorityFee`](../api/index.md#minergetminpriorityfee) to get the value.
* [`miner_setMinPriorityFee`](../api/index.md#minersetminpriorityfee) to change the value.

### `nat-method`
Expand Down

0 comments on commit 1c528f5

Please sign in to comment.