From 28aefaee497a54cfbd86171553e8939e2c26647a Mon Sep 17 00:00:00 2001 From: Trent Nelson Date: Thu, 29 Apr 2021 21:17:03 -0600 Subject: [PATCH] docs: fix copy-pasta breaking typo in `getRecentBlockhash` example --- 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 06ed672de6f7cf..63ddb991a64962 100644 --- a/docs/src/developing/clients/jsonrpc-api.md +++ b/docs/src/developing/clients/jsonrpc-api.md @@ -1887,7 +1887,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"} ' ```