Parcourir la source

Update entrypoint.sh

HoraceZhang il y a 11 mois
Parent
commit
072e1878da
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      entrypoint.sh

+ 1 - 1
entrypoint.sh

@@ -7,7 +7,7 @@ REWARD_ADDRESS=${REWARD_ADDRESS}
 for ((COUNT=1; COUNT<=NODE_COUNT; COUNT++)); do
     echo "start $COUNT node"
     mkdir -p /root/antnode_data/node_$COUNT
-    ./antnode --rewards-address $REWARD_ADDRESS --root-dir /root/antnode_data/node_$COUNT evm-arbitrum-one &
+    ./antnode --rewards-address $REWARD_ADDRESS --root-dir /root/antnode_data/node_$COUNT "$@" evm-arbitrum-one &
     sleep 0.3
 done