From c1ece02c80852c2313c41cfe242a7fc5ca532761 Mon Sep 17 00:00:00 2001 From: Sergiy Lavrynenko Date: Mon, 3 Jul 2023 12:59:21 +0100 Subject: [PATCH] Fixed docker script missing --json-rpc-port=... command line argument --- agent/run.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/agent/run.sh b/agent/run.sh index 9845fd9c5..e4bd86bfe 100644 --- a/agent/run.sh +++ b/agent/run.sh @@ -19,6 +19,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" : "${NODE_NUMBER?Need to set NODE_NUMBER}" : "${NODES_COUNT?Need to set NODES_COUNT}" +: "${RPC_PORT?Need to set RPC_PORT}" : "${MONITORING_PORT?Need to set MONITORING_PORT}" : "${TM_URL_MAIN_NET?Need to set TM_URL_MAIN_NET}" @@ -70,6 +71,7 @@ echo "NODES_COUNT: $NODES_COUNT" BASE_OPTIONS="--gas-price-multiplier=$GAS_PRICE_MULTIPLIER \ --gas-multiplier=$GAS_MULTIPLIER \ --verbose=$VERBOSE \ +--json-rpc-port=$RPC_PORT \ --s2s-enable \ --abi-skale-manager=$MANAGER_ABI_PATH \ --url-main-net=$MAINNET_RPC_URL \