From c3dc23e84af1fab037258b491604cee39f98829f Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 30 Apr 2021 04:24:40 +0000 Subject: [PATCH] docs: fix copy-pasta breaking typo in `getRecentBlockhash` example (#16962) (cherry picked from commit 3d98321b38966f9e3252a0e545a863f8873625e3) Co-authored-by: Trent Nelson --- docs/src/developing/clients/jsonrpc-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/developing/clients/jsonrpc-api.md b/docs/src/developing/clients/jsonrpc-api.md index d9c8d05289..5e4ed3a6c5 100644 --- a/docs/src/developing/clients/jsonrpc-api.md +++ b/docs/src/developing/clients/jsonrpc-api.md @@ -2161,7 +2161,7 @@ An RpcResponse containing a JSON object consisting of a string blockhash and Fee Request: ```bash -curl http://localhost:8899 -X POST -H "Content-Type: application/json" -d 'i +curl http://localhost:8899 -X POST -H "Content-Type: application/json" -d ' {"jsonrpc":"2.0","id":1, "method":"getRecentBlockhash"} ' ```