From 1881997c575f662ecc16c72e963bc04a1a4138e6 Mon Sep 17 00:00:00 2001 From: easysnipe <119630404+easysnipe@users.noreply.github.com> Date: Wed, 24 Apr 2024 13:19:32 -0700 Subject: [PATCH] Fixed \ not showing up since it is escaped In the example for how to escape quotes in windows the slash does not show up since it is not escaped, Replaced \ with \\. --- docs/rpc-reference/full-node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rpc-reference/full-node.md b/docs/rpc-reference/full-node.md index 3bd8be4394..39bf44afe0 100644 --- a/docs/rpc-reference/full-node.md +++ b/docs/rpc-reference/full-node.md @@ -31,7 +31,7 @@ chia rpc full_node get_block '{"header_hash":"0xf42b4e77315d79ddfb3d64becb21e26e To run the same command on Windows, you need to escape the quotes with backslashes. In other words, add a \ before each double quote, such that: - "header_hash" becomes \"header_hash\" + "header_hash" becomes \\"header_hash\\"