Skip to content

Commit

Permalink
Remove seal flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Ethernal committed Oct 10, 2023
1 parent 5b83c76 commit 8e527d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/local/polygon-edge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ case "$1" in
--libp2p 0.0.0.0:1478 \
--jsonrpc 0.0.0.0:8545 \
--prometheus 0.0.0.0:5001 \
--seal $relayer_flag
$relayer_flag
;;
*)
echo "Executing polygon-edge..."
Expand Down
4 changes: 2 additions & 2 deletions scripts/cluster
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,12 @@ function startNodes() {

./polygon-edge server --data-dir "$data_dir" --chain genesis.json \
--grpc-address ":$grpc_port" --libp2p ":$libp2p_port" --jsonrpc ":$jsonrpc_port" \
--num-block-confirmations 2 --seal $relayer_arg \
--num-block-confirmations 2 $relayer_arg \
--log-level DEBUG 2>&1 | tee $log_file &
else
./polygon-edge server --data-dir "$data_dir" --chain genesis.json \
--grpc-address ":$grpc_port" --libp2p ":$libp2p_port" --jsonrpc ":$jsonrpc_port" \
--num-block-confirmations 2 --seal $relayer_arg \
--num-block-confirmations 2 $relayer_arg \
--log-level DEBUG &
fi

Expand Down

0 comments on commit 8e527d6

Please sign in to comment.