Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing BLS key name in docker run.sh script #1526

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions agent/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

: "${SGX_URL?Need to set SGX_URL}"
: "${ECDSA_KEY_NAME?Need to set ECDSA_KEY_NAME}"
: "${BLS_KEY_NAME?Need to set BLS_KEY_NAME}"
: "${SGX_SSL_KEY_PATH?Need to set SGX_SSL_KEY_PATH}"
: "${SGX_SSL_CERT_PATH?Need to set SGX_SSL_CERT_PATH}"
: "${NODE_ADDRESS?Need to set NODE_ADDRESS}"
Expand Down Expand Up @@ -83,6 +84,7 @@ BASE_OPTIONS="--gas-price-multiplier=$GAS_PRICE_MULTIPLIER \
--abi-main-net=$MAINNET_PROXY_PATH \
--abi-s-chain=$SCHAIN_PROXY_PATH \
--sgx-url=$SGX_URL \
--sgx-bls-key=$BLS_KEY_NAME \
--sgx-ecdsa-key=$ECDSA_KEY_NAME \
--sgx-ssl-key=$SGX_SSL_KEY_PATH \
--sgx-ssl-cert=$SGX_SSL_CERT_PATH \
Expand Down