Browse Source

fix docker fast sync bug

pull/102/head
Ethan Buchman 10 years ago
parent
commit
812c5577e0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      DOCKER/run.sh

+ 1
- 1
DOCKER/run.sh View File

@ -4,7 +4,7 @@ if [[ $BARAK_SEED ]]; then
cat ./cmd/barak/$BARAK_SEED | ./build/barak &
fi
if [[ $FAST_SYNC ]]; then
if [ "$FAST_SYNC" = "true" ]; then
./build/tendermint node --fast_sync
else
./build/tendermint node


Loading…
Cancel
Save