Skip to content

Commit

Permalink
Fixed \ not showing up since it is escaped
Browse files Browse the repository at this point in the history
In the example for how to escape quotes in windows the slash does not show up since it is not escaped, Replaced \ with \\.
  • Loading branch information
easysnipe authored Apr 24, 2024
1 parent 2022629 commit 1881997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rpc-reference/full-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -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\\"

</details>

Expand Down

0 comments on commit 1881997

Please sign in to comment.