-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update README for n00bs #47
Conversation
README.md
Outdated
## Prerequisites | ||
|
||
* Go to https://golang.org/doc/install to install Golang. | ||
* Once you have Golang installed you will also need to install the Golang package manager `glide`: https://github.com/Masterminds/glide. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is somewhat optional (if go get
fails or the dev wants fixed versions)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
go get
succeeded but i wasn't able to run make get_vendor_deps
without glide
, i got this error:
/go/src/github.com/tendermint/basecoin (develop) $ make get_vendor_deps
go get github.com/Masterminds/glide
glide install
make: glide: No such file or directory
make: *** [get_vendor_deps] Error 1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is no need to make get_vendor_deps
if go get -u .../cmd/basecoin
succeeded.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in that case I think we need to change the instructions here:
The guaranteed correct way of compiling from source, assuming you've already run go get or otherwise cloned the repo, is:
git checkout develop # (until we release tendermint v0.9)
make get_vendor_deps
make install
because it seems like once you do go get
you're supposed to do all that stuff ^^. How would you change it?
Release v0.4.1
… reward post withdraw (fixes cosmos#47)
… reward post withdraw (fixes cosmos#47)
* okchain patch * Change system fee to gas fee * remove minimum-gas-prices from the server/start.go * fix backend default config * Remove some meaningless comments and some default value of flags * fix the mock test func * set defaultMinGasPrices = "0.00000001okt" * FIX: issue #47, remove param msdLimited in config/default_params.go * add fee * Update query.go change client tips from cosmosxxx to okchainxxx * open CI and fix UT (#12) * Update config.yml * udpate go mod * Update config.yml * fix UT * fix UT * fix UT * fix UT * fix UT * fix UT * fix UT * fix UT * fix slashing UT * Update config.yml * cancel TxMsgs limit, revert to version cosmos * Update config.yml * Update config.yml * Update config.yml * Update README.md Co-authored-by: ylsGit <> Co-authored-by: yezhigang <zhigang.ye@okcoin.net> * To fix okchain issue #70 && order tx not requiring fees (#10) * set the Infinite Gas Meter for order tx Co-authored-by: GeYiLi <yili.ge@okcoin.net> Co-authored-by: liuxiong <xiong.liu@okcoin.net> Co-authored-by: yanwei.han <yanwei.han@okcoin.net> Co-authored-by: qzhongwood <2609611@qq.com> Co-authored-by: MichaelWang <guanyi.wang@okcoin.net> Co-authored-by: lei.ji@okcoin.com <lei.ji@okcoin.net> Co-authored-by: ZhiGang <44460798+KamiD@users.noreply.github.com> Co-authored-by: ylsGit <bzwdyls@163.com> Co-authored-by: yezhigang <zhigang.ye@okcoin.net> Co-authored-by: banishee <gl12138@live.com> Co-authored-by: GeYiLi <yili.ge@okcoin.net>
Description
I followed the instructions and wrote down all the things that I had to do to get there
glide
$GOPATH
env varSteps to test
Notes
This means
basecoin start
has succeeded (apparently) but the messaging is unclear. Should we add a note in the README to decipher it, or should we change the messaging?