diff --git a/Makefile b/Makefile index 6eb79a96fd..fe316f0c9a 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ dist: @bash scripts/dist.sh @bash scripts/publish.sh -test: test_unit test_cli +test: test_unit test_cli test_tutorial test_unit: go test `glide novendor` diff --git a/cmd/basecoin/commands/init.go b/cmd/basecoin/commands/init.go index a75bf3c108..b0b6a3fc28 100644 --- a/cmd/basecoin/commands/init.go +++ b/cmd/basecoin/commands/init.go @@ -14,7 +14,7 @@ import ( //commands var ( InitCmd = &cobra.Command{ - Use: "init", + Use: "init [address]", Short: "Initialize a basecoin blockchain", RunE: initCmd, } diff --git a/docs/guide/basecoin-basics.md b/docs/guide/basecoin-basics.md index 78e586e044..535d86c1ac 100644 --- a/docs/guide/basecoin-basics.md +++ b/docs/guide/basecoin-basics.md @@ -1,17 +1,56 @@