From b2f9001798443652db96a81f0e836c52ac01c64a Mon Sep 17 00:00:00 2001 From: MadelineMurray <43356962+MadelineMurray@users.noreply.github.com> Date: Wed, 10 Apr 2019 12:06:50 +1000 Subject: [PATCH] Fixed link (#1249) Signed-off-by: Adrian Sutton --- docs/Reference/Pantheon-CLI-Syntax.md | 10 +++++----- docs/Tutorials/Create-Private-Clique-Network.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/Reference/Pantheon-CLI-Syntax.md b/docs/Reference/Pantheon-CLI-Syntax.md index 2d98ac5a43..32b97131e9 100644 --- a/docs/Reference/Pantheon-CLI-Syntax.md +++ b/docs/Reference/Pantheon-CLI-Syntax.md @@ -1067,7 +1067,7 @@ Pantheon subcommands are: This command provides blocks related actions. -#### import +### import ```bash tab="Syntax" $ pantheon blocks import --from= @@ -1083,7 +1083,7 @@ Imports blocks from the specified file into the blockchain database This command provides node public key related actions. -#### export +### export ```bash tab="Syntax" $ pantheon public-key export [--to=] @@ -1100,7 +1100,7 @@ $ pantheon --data-path= public-key export --to=/home/me/me_proje Outputs the node public key to standard output or writes it to the specified file if `--to=` is specified. -#### export-address +### export-address ```bash tab="Syntax" $ pantheon public-key export-address [--to=] @@ -1121,7 +1121,7 @@ Outputs the node public key address to standard output or writes it to the speci This command provides password related actions. -#### hash +### hash This command generates the hash of a given password. Include the hash in the [credentials file](../JSON-RPC-API/Authentication.md#credentials-file) for JSON-RPC API [authentication](../JSON-RPC-API/Authentication.md). @@ -1138,7 +1138,7 @@ $ pantheon password hash --password=myPassword123 This command provides RLP related actions. -#### encode +### encode This command encodes a typed JSON value from a file or from the standard input into an RLP hexadecimal string. diff --git a/docs/Tutorials/Create-Private-Clique-Network.md b/docs/Tutorials/Create-Private-Clique-Network.md index be7f3c6b0c..2b85f86fd8 100644 --- a/docs/Tutorials/Create-Private-Clique-Network.md +++ b/docs/Tutorials/Create-Private-Clique-Network.md @@ -38,7 +38,7 @@ Clique-Network/ In Clique networks, the address of at least one initial signer must be included in the genesis file. For this Clique network, we will use Node-1 as the initial signer. This requires obtaining the address for Node-1. -To obtain the address for Node-1, in the `Node-1` directory, use the [`public-key export-address`](../Reference/Pantheon-CLI-Syntax.md#public-key) +To obtain the address for Node-1, in the `Node-1` directory, use the [`public-key export-address`](../Reference/Pantheon-CLI-Syntax.md#export-address) subcommand to write the node address to the specified file (`node1Address` in this example) ```bash tab="MacOS"