From b3aa899d8a64b76d0340981ee389dc254ff69f15 Mon Sep 17 00:00:00 2001 From: Marko Baricevic Date: Fri, 3 Jan 2020 12:11:42 +0100 Subject: [PATCH] some minor fixes --- hellochain/tutorial/03-make.md | 2 +- hellochain/tutorial/04-try-it-out.md | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/hellochain/tutorial/03-make.md b/hellochain/tutorial/03-make.md index 0509db4063..02200fe64d 100644 --- a/hellochain/tutorial/03-make.md +++ b/hellochain/tutorial/03-make.md @@ -24,7 +24,7 @@ all: install install: go.sum go install -mod=readonly $(BUILD_FLAGS) ./cmd/hcd - go install -mod=readonly$(BUILD_FLAGS) ./cmd/hccli + go install -mod=readonly $(BUILD_FLAGS) ./cmd/hccli go.sum: go.mod @echo "--> Ensure dependencies have not been modified" diff --git a/hellochain/tutorial/04-try-it-out.md b/hellochain/tutorial/04-try-it-out.md index 1e62af8d5f..d8dcbc6656 100644 --- a/hellochain/tutorial/04-try-it-out.md +++ b/hellochain/tutorial/04-try-it-out.md @@ -98,11 +98,10 @@ $ hccli tx send $(hccli keys show alice -a) $(hccli keys show bob -a) 50hello ``` -These commmands will print a JSON representation of the Tx for you to inspect +These commands will print a JSON representation of the Tx for you to inspect before entering your password to sign and broadcast it to your node. Query the account afterward to see if the balance changed. Ok well done, we now have a basic blockchain. It can send and receive coins, big deal. Now lets add some functionality of our own making to see how flexible -the Cosmos SDK can be. - +the Cosmos SDK can be. \ No newline at end of file