mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-22 02:41:19 +00:00
8 lines
173 B
Bash
8 lines
173 B
Bash
#! /bin/bash
|
|
|
|
if [[ "$SEEDS" != "" ]]; then
|
|
SEEDS_FLAG="--seeds=$SEEDS"
|
|
fi
|
|
|
|
./tendermint-linux node --proxy_app=dummy --log_level=note $SEEDS_FLAG >> tendermint.log 2>&1 &
|