Skip to content

Commit

Permalink
Fixed config to pass tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Frozen committed Dec 18, 2024
1 parent 1c91cbf commit c0060ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function setup() {

function launch_bootnode() {
echo "launching boot node ..."
${DRYRUN} ${ROOT}/bin/bootnode -port 19876 -max_conn_per_ip 100 -force_public true >"${log_folder}"/bootnode.log 2>&1 | tee -a "${LOG_FILE}" &
${DRYRUN} ${ROOT}/bin/bootnode -port 19876 -rpc_http_port 8888 -rpc_ws_port 8889 -network "localnet" -max_conn_per_ip 100 -force_public true >"${log_folder}"/bootnode.log 2>&1 | tee -a "${LOG_FILE}" &
sleep 1
BN_MA=$(grep "BN_MA" "${log_folder}"/bootnode.log | awk -F\= ' { print $2 } ')
echo "bootnode launched." + " $BN_MA"
Expand All @@ -63,8 +63,8 @@ function launch_bootnode() {
function launch_localnet() {
launch_bootnode

unset -v base_args
declare -a base_args args
unset -v base_args sync_options
declare -a base_args args sync_options

if ${VERBOSE}; then
verbosity=5
Expand Down

0 comments on commit c0060ce

Please sign in to comment.