Skip to content

Commit

Permalink
fix: force no bbr when starting local devnet (#3892)
Browse files Browse the repository at this point in the history
## Overview

adds the `--force-no-bbr` flag when starting the local devnet so that it
works.
  • Loading branch information
rach-id authored Sep 23, 2024
1 parent f3e9967 commit 45518aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion local_devnet/scripts/start_core0.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ fi
/bin/celestia-appd start \
--moniker core0 \
--rpc.laddr tcp://0.0.0.0:26657 \
--home /opt
--home /opt \
--force-no-bbr
9 changes: 5 additions & 4 deletions local_devnet/scripts/start_node_and_create_validator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ fi

# start node
celestia-appd start \
--home="${CELESTIA_HOME}" \
--moniker="${MONIKER}" \
--p2p.persistent_peers=e3c592c0c2ad4b05cef3791456b0d6dd4da72ed2@core0:26656 \
--rpc.laddr=tcp://0.0.0.0:26657
--home="${CELESTIA_HOME}" \
--moniker="${MONIKER}" \
--p2p.persistent_peers=e3c592c0c2ad4b05cef3791456b0d6dd4da72ed2@core0:26656 \
--rpc.laddr=tcp://0.0.0.0:26657 \
--force-no-bbr

0 comments on commit 45518aa

Please sign in to comment.