mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-15 08:01:19 +00:00
13 lines
184 B
Bash
Executable File
13 lines
184 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if [[ $BARAK_SEED ]]; then
|
|
cat ./cmd/barak/$BARAK_SEED | ./build/barak &
|
|
fi
|
|
|
|
if [ "$FAST_SYNC" = "true" ]; then
|
|
tendermint node --fast_sync
|
|
else
|
|
tendermint node
|
|
fi
|
|
|