Skip to content

Commit

Permalink
Merge branch 'main' into 1456Redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
bgravenorst authored Nov 29, 2023
2 parents 0161909 + 07a1639 commit b3da71c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/public-networks/reference/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5506,7 +5506,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"miner_getMinPriorityFee","params
{
"jsonrpc": "2.0",
"id": 1,
"result": 0x1
"result": "0x1"
}
```
<!--/tabs-->
Expand Down Expand Up @@ -5567,7 +5567,7 @@ Use [`miner_getMinPriorityFee`](#minergetminpriorityfee) to get the current valu
#### Parameters
`minPriorityFeePerGas`: _integer_ - Minimum priority fee per gas
`minPriorityFeePerGas`: _string_ - Minimum priority fee per gas in hexadecimal.
#### Returns
Expand All @@ -5578,7 +5578,7 @@ Use [`miner_getMinPriorityFee`](#minergetminpriorityfee) to get the current valu
# curl HTTP request
```bash
curl -X POST --data '{"jsonrpc":"2.0","method":"miner_setMinPriorityFee","params":[1],"id":1}' http://127.0.0.1:8545
curl -X POST --data '{"jsonrpc":"2.0","method":"miner_setMinPriorityFee","params":["0x0a"],"id":1}' http://127.0.0.1:8545
```
# wscat WS request
Expand All @@ -5587,7 +5587,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"miner_setMinPriorityFee","params
{
"jsonrpc": "2.0",
"method": "miner_setMinPriorityFee",
"params": [1],
"params": ["0x0a"],
"id": 1
}
```
Expand Down

0 comments on commit b3da71c

Please sign in to comment.