From f9b5d8c648905b6cbf033da6d758fc2f710dea71 Mon Sep 17 00:00:00 2001 From: Christopher Goes Date: Thu, 26 Apr 2018 22:03:25 +0200 Subject: [PATCH] Minor README updates --- docs/staking/testnet.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/staking/testnet.rst b/docs/staking/testnet.rst index 0271468935..ab8c1644db 100644 --- a/docs/staking/testnet.rst +++ b/docs/staking/testnet.rst @@ -1,7 +1,7 @@ Testnet Setup ============= -**Note:** THIS DOCUMENT IS OUT OF DATE +**Note:** This document is incomplete and may not be up-to-date with the state of the code. See the `installation guide <../sdk/install.html>`__ for details on installation. @@ -27,7 +27,7 @@ Now let's actually create the genesis files for both nodes: gaiad init --gen-txs --home=$HOME/.gaiad2 --chain-id=test-chain **Note:** If you've already run these tests you may need to overwrite genesis using the ``-o`` flag -What we just did is copy the genesis transactions between each of the nodes so there is a common genesis transaction set; then we created both genesis files independantly from each home directory. Importantly both nodes have independantly created their ``genesis.json`` and ``config.toml`` files, which should be identical between nodes. +What we just did is copy the genesis transactions between each of the nodes so there is a common genesis transaction set; then we created both genesis files independently from each home directory. Importantly both nodes have independently created their ``genesis.json`` and ``config.toml`` files, which should be identical between nodes. Great, now that we've initialized the chains, we can start both nodes in the background: @@ -52,7 +52,7 @@ Then, we try to transfer some ``fermion`` to another account: gaiacli account gaiacli account - gaiacli send --amount=10fermion --to= --name=foo --chain-id=test-chain --node=tcp://localhost:46657 --sequence=0 + gaiacli send --amount=10fermion --to= --name=foo --chain-id=test-chain **Note:** We need to be careful with the ``chain-id`` and ``sequence`` @@ -72,7 +72,7 @@ Finally, to relinquish all your power, unbond some coins. You should see your Vo :: - gaiacli unbond --sequence=1 --chain-id= --name=test + gaiacli unbond --chain-id= --name=test That's it!