Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
chore: fix flags in e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rach-id committed Nov 10, 2023
1 parent afd0ed5 commit f9bee36
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 16 deletions.
6 changes: 2 additions & 4 deletions e2e/scripts/deploy_blobstream_contract.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,8 @@ echo "deploying Blobstream contract..."
/bin/blobstream deploy \
--evm.chain-id "${EVM_CHAIN_ID}" \
--evm.account "${EVM_ACCOUNT}" \
--core.grpc.host "${CORE_GRPC_HOST}" \
--core.grpc.port "${CORE_GRPC_PORT}" \
--core.rpc.host "${CORE_RPC_HOST}" \
--core.rpc.port "${CORE_RPC_PORT}" \
--core.rpc="${CORE_RPC_HOST}:${CORE_RPC_PORT}" \
--core.grpc="${CORE_GRPC_HOST}:${CORE_GRPC_PORT}" \
--grpc.insecure \
--starting-nonce "${STARTING_NONCE}" \
--evm.rpc "${EVM_ENDPOINT}" \
Expand Down
12 changes: 4 additions & 8 deletions e2e/scripts/start_orchestrator_after_validator_created.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,8 @@ then

/bin/blobstream orchestrator start \
--evm.account="${EVM_ACCOUNT}" \
--core.rpc.host="${CORE_RPC_HOST}" \
--core.rpc.port="${CORE_RPC_PORT}" \
--core.grpc.host="${CORE_GRPC_HOST}" \
--core.grpc.port="${CORE_GRPC_PORT}" \
--core.rpc="${CORE_RPC_HOST}:${CORE_RPC_PORT}" \
--core.grpc="${CORE_GRPC_HOST}:${CORE_GRPC_PORT}" \
--grpc.insecure \
--p2p.nickname=key \
--p2p.listen-addr="${P2P_LISTEN}" \
Expand All @@ -63,10 +61,8 @@ else

/bin/blobstream orchestrator start \
--evm.account="${EVM_ACCOUNT}" \
--core.rpc.host="${CORE_RPC_HOST}" \
--core.rpc.port="${CORE_RPC_PORT}" \
--core.grpc.host="${CORE_GRPC_HOST}" \
--core.grpc.port="${CORE_GRPC_PORT}" \
--core.rpc="${CORE_RPC_HOST}:${CORE_RPC_PORT}" \
--core.grpc="${CORE_GRPC_HOST}:${CORE_GRPC_PORT}" \
--grpc.insecure \
--p2p.listen-addr="${P2P_LISTEN}" \
--p2p.bootstrappers="${P2P_BOOTSTRAPPERS}" \
Expand Down
6 changes: 2 additions & 4 deletions e2e/scripts/start_relayer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,8 @@ BLOBSTREAM_CONTRACT=$(cat /opt/blobstream_address.txt)
sleep 5s
/bin/blobstream relayer start \
--evm.account="${EVM_ACCOUNT}" \
--core.rpc.host="${CORE_RPC_HOST}" \
--core.rpc.port="${CORE_RPC_PORT}" \
--core.grpc.host="${CORE_GRPC_HOST}" \
--core.grpc.port="${CORE_GRPC_PORT}" \
--core.rpc="${CORE_RPC_HOST}:${CORE_RPC_PORT}" \
--core.grpc="${CORE_GRPC_HOST}:${CORE_GRPC_PORT}" \
--grpc.insecure \
--evm.chain-id="${EVM_CHAIN_ID}" \
--evm.rpc="${EVM_ENDPOINT}" \
Expand Down

0 comments on commit f9bee36

Please sign in to comment.