mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-06 12:02:13 +00:00
13 lines
191 B
Bash
13 lines
191 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
if [[ $BARAK_SEED ]]; then
|
||
|
cat ./cmd/barak/$BARAK_SEED | ./build/barak &
|
||
|
fi
|
||
|
|
||
|
if [[ $FAST_SYNC ]]; then
|
||
|
./build/tendermint node --fast_sync
|
||
|
else
|
||
|
./build/tendermint node
|
||
|
fi
|
||
|
|