From 5f49dab03bdc81a8216af1d9362f5d8da92e1c83 Mon Sep 17 00:00:00 2001 From: Chetany Bhardwaj Date: Mon, 29 Dec 2025 01:55:42 +0530 Subject: [PATCH] fix: remove ream devnet flag --- client-cmds/ream-cmd.sh | 7 ------- 1 file changed, 7 deletions(-) mode change 100644 => 100755 client-cmds/ream-cmd.sh diff --git a/client-cmds/ream-cmd.sh b/client-cmds/ream-cmd.sh old mode 100644 new mode 100755 index 2b01f61..0c5105d --- a/client-cmds/ream-cmd.sh +++ b/client-cmds/ream-cmd.sh @@ -1,11 +1,6 @@ #!/bin/bash #-----------------------ream setup---------------------- -devnet_flag="" -if [ -n "$devnet" ]; then - devnet_flag="--devnet $devnet" -fi - # Metrics enabled by default metrics_flag="--metrics" @@ -14,7 +9,6 @@ node_binary="$scriptDir/../ream/target/release/ream --data-dir $dataDir/$item \ lean_node \ --network $configDir/config.yaml \ --validator-registry-path $configDir/validators.yaml \ - $devnet_flag \ --bootnodes $configDir/nodes.yaml \ --node-id $item --node-key $configDir/$privKeyPath \ --socket-port $quicPort \ @@ -27,7 +21,6 @@ node_docker="ghcr.io/reamlabs/ream:latest --data-dir /data \ lean_node \ --network /config/config.yaml \ --validator-registry-path /config/validators.yaml \ - $devnet_flag \ --bootnodes /config/nodes.yaml \ --node-id $item --node-key /config/$privKeyPath \ --socket-port $quicPort \