Skip to content

Commit

Permalink
Remove p2p bootnode address. Remove wss for telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
semeniak97mf committed Oct 28, 2024
1 parent dfa3e2c commit eaa41c2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 18 deletions.
4 changes: 1 addition & 3 deletions mainnet/deploy/deploy-bootnode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,8 @@ start_node() {
--state-pruning archive \
--listen-addr /ip4/0.0.0.0/tcp/30333 \
--node-key "$BOOT_NODE_KEY_PRIV" \
--bootnodes "$BOOT_NODE_P2P_ADDRESS" \
--prometheus-external \
--prometheus-port 9615 \
--telemetry-url "wss://${TELEMETRY_HOST}/submit 1"
--prometheus-port 9615
}

start_process_exporter() {
Expand Down
8 changes: 2 additions & 6 deletions mainnet/deploy/deploy-validator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ start_node_unsafe() {
--chain "/chainspec.json" \
--node-key "$VALIDATOR_KEY" \
--name "$validator" \
--bootnodes "$BOOT_NODE_P2P_ADDRESS" \
--base-path /chain-data \
--rpc-port 9944 \
--rpc-methods=unsafe \
Expand All @@ -70,8 +69,7 @@ start_node_unsafe() {
--state-pruning archive \
--enable-log-reloading \
--max-runtime-instances 32 \
--rpc-max-connections 10000 \
--telemetry-url "wss://${TELEMETRY_HOST}/submit 1"
--rpc-max-connections 10000
}

start_node_safe() {
Expand All @@ -89,7 +87,6 @@ start_node_safe() {
--chain "/chainspec.json" \
--node-key "$VALIDATOR_KEY" \
--name "$validator" \
--bootnodes "$BOOT_NODE_P2P_ADDRESS" \
--base-path /chain-data \
--rpc-port 9944 \
--rpc-methods=safe \
Expand All @@ -102,8 +99,7 @@ start_node_safe() {
--state-pruning archive \
--enable-log-reloading \
--max-runtime-instances 32 \
--rpc-max-connections 10000 \
--telemetry-url "wss://${TELEMETRY_HOST}/submit 1"
--rpc-max-connections 10000
}

start_process_exporter() {
Expand Down
4 changes: 1 addition & 3 deletions mainnet/deploy/run-arch-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ start_node_safe() {
"$docker_image" \
--chain "/chainspec.json" \
--name "$validator" \
--bootnodes "$BOOT_NODE_P2P_ADDRESS" \
--base-path /chain-data \
--rpc-port 9944 \
--rpc-methods=safe \
Expand All @@ -66,8 +65,7 @@ start_node_safe() {
--state-pruning archive \
--enable-log-reloading \
--max-runtime-instances 32 \
--rpc-max-connections 10000 \
--telemetry-url "wss://${TELEMETRY_HOST}/submit 1"
--rpc-max-connections 10000
}

start_process_exporter() {
Expand Down
4 changes: 1 addition & 3 deletions mainnet/update/update-bootnode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,8 @@ start_node() {
--state-pruning archive \
--listen-addr /ip4/0.0.0.0/tcp/30333 \
--node-key "$BOOT_NODE_KEY_PRIV" \
--bootnodes "$BOOT_NODE_P2P_ADDRESS" \
--prometheus-external \
--prometheus-port 9615 \
--telemetry-url "wss://${TELEMETRY_HOST}/submit 1"
--prometheus-port 9615
}

start_process_exporter() {
Expand Down
4 changes: 1 addition & 3 deletions mainnet/update/update-validator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ start_node_safe() {
--chain "/chainspec.json" \
--node-key "$VALIDATOR_KEY" \
--name "$validator" \
--bootnodes "$BOOT_NODE_P2P_ADDRESS" \
--base-path /chain-data \
--rpc-port 9944 \
--rpc-methods=safe \
Expand All @@ -68,8 +67,7 @@ start_node_safe() {
--state-pruning archive \
--enable-log-reloading \
--max-runtime-instances 32 \
--rpc-max-connections 10000 \
--telemetry-url "wss://${TELEMETRY_HOST}/submit 1"
--rpc-max-connections 10000
}

start_process_exporter() {
Expand Down

0 comments on commit eaa41c2

Please sign in to comment.