Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes incorrect patch for #12690 See: #12690 (comment) ``` ➜ curl --request POST \ -s --url http://127.0.0.1:8545/ \ --header 'Content-Type: application/json' \ --data '{ "method": "eth_getBlockByHash", "params": [ "latest", false ], "id": 1, "jsonrpc": "2.0" }' | jq '.result.miner' "0x0000000000000000000000000000000000000000" ➜ curl --request POST \ -s --url http://127.0.0.1:8545/ \ --header 'Content-Type: application/json' \ --data '{ "method": "eth_getBlockByNumber", "params": [ "latest", false ], "id": 1, "jsonrpc": "2.0" }' | jq '.result.miner' "0x0000000000000000000000000000000000000000" ```
- Loading branch information