Skip to content

Commit

Permalink
some minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tac0turtle committed Jan 3, 2020
1 parent b61a1ca commit b3aa899
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hellochain/tutorial/03-make.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 2 additions & 3 deletions hellochain/tutorial/04-try-it-out.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit b3aa899

Please sign in to comment.