You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
560 B

8 years ago
  1. #! /bin/bash
  2. # This is a sample bash script for tendermint core
  3. # Edit this script before "mintnet start" to change
  4. # the core blockchain engine.
  5. TMREPO="github.com/tendermint/tendermint"
  6. BRANCH="master"
  7. go get -d $TMREPO/cmd/tendermint
  8. ### DEPENDENCIES (example)
  9. # cd $GOPATH/src/github.com/tendermint/abci
  10. # git fetch origin $BRANCH
  11. # git checkout $BRANCH
  12. ### DEPENDENCIES END
  13. cd $GOPATH/src/$TMREPO
  14. git fetch origin $BRANCH
  15. git checkout $BRANCH
  16. make install
  17. tendermint node --p2p.seeds="$TMSEEDS" --moniker="$TMNAME" --proxy_app="$PROXYAPP" --rpc.unsafe