__System info:__ __Steps to reproduce:__ ```shell curl --location --request POST 'https://eth.bd.evmos.org:8545' \ --header 'Content-Type: application/json' \ --data-raw '{ "jsonrpc": "2.0", "method": "eth_feeHistory", "params": [ 4, "latest", null ], "id": 0 }' ``` __Expected behavior:__ 5 items should be in `baseFeePerGas` in the response as mentioned [here](https://web3py.readthedocs.io/en/stable/web3.eth.html?highlight=verify_eth_getProof#web3.eth.Eth.fee_history). ``` This includes the next block after the newest of the returned range, because this value can be derived from the newest block. ``` __Actual behavior:__ 4 items in `baseFeePerGas` ``` {"jsonrpc":"2.0","id":0,"result":{"baseFeePerGas":["0x4a817c800","0x4a817c800","0x4a817c800","0x4a817c800"],"gasUsedRatio":[0.016875,0.003654575,0,0.00144495],"oldestBlock":"0x83e77a"}} ``` __Additional info:__ [Include gist of relevant config, logs, etc.]
System info:
Steps to reproduce:
Expected behavior:
5 items should be in
baseFeePerGasin the response as mentioned here.Actual behavior:
4 items in
baseFeePerGasAdditional info: [Include gist of relevant config, logs, etc.]