mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-16 08:31:19 +00:00
20 lines
542 B
Bash
Executable File
20 lines
542 B
Bash
Executable File
#! /bin/bash
|
|
# This is a sample bash script for tendermint core
|
|
# Edit this script before "mintnet start" to change
|
|
# the core blockchain engine.
|
|
|
|
TMREPO="github.com/tendermint/tendermint"
|
|
BRANCH="master"
|
|
|
|
go get -d $TMREPO/cmd/tendermint
|
|
### DEPENDENCIES (example)
|
|
# cd $GOPATH/src/github.com/tendermint/tmsp
|
|
# git fetch origin $BRANCH
|
|
# git checkout $BRANCH
|
|
### DEPENDENCIES END
|
|
cd $GOPATH/src/$TMREPO
|
|
git fetch origin $BRANCH
|
|
git checkout $BRANCH
|
|
make install
|
|
|
|
tendermint node --seeds="$TMSEEDS" --moniker="$TMNAME" --proxy_app="$PROXYAPP" |