From 326dc720976ee46c4ab63c44220135fd47ff584f Mon Sep 17 00:00:00 2001 From: Thomas Nguy <81727899+thomas-nguy@users.noreply.github.com> Date: Mon, 26 Jul 2021 16:11:12 +0900 Subject: [PATCH] docs: fix example rpc call (#355) --- docs/basics/json_rpc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics/json_rpc.md b/docs/basics/json_rpc.md index 8ccca9f7..aee7afb8 100644 --- a/docs/basics/json_rpc.md +++ b/docs/basics/json_rpc.md @@ -321,7 +321,7 @@ Returns the storage address for a given account address. ```json // Request -curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getStorageAt","params":["0x0f54f47bf9b8e317b214ccd6a7c3e38b893cd7f0", "0" "latest"],"id":1}' -H "Content-Type: application/json" http://localhost:8545 +curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getStorageAt","params":["0x0f54f47bf9b8e317b214ccd6a7c3e38b893cd7f0", "0", "latest"],"id":1}' -H "Content-Type: application/json" http://localhost:8545 // Result {"jsonrpc":"2.0","id":1,"result":"0x0000000000000000000000000000000000000000000000000000000000000000"}