From 4947c0f0fa0f98cb0eb0aaf4ad6c693cb9fdcdc7 Mon Sep 17 00:00:00 2001 From: Javier Cortejoso Date: Fri, 30 Nov 2018 10:45:58 +0100 Subject: [PATCH] Added missing export --- start_ocean.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start_ocean.sh b/start_ocean.sh index 8d73594..ed699e6 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -12,7 +12,7 @@ export KEEPER_NETWORK_NAME="ganache" export ARTIFACTS_FOLDER=$HOME/.ocean/keeper-contracts/artifacts export BRIZO_ENV_FILE=$DIR/brizo.env # Specify the ethereum default RPC container provider -RPC_URL='keeper-contracts' +export RPC_URL='keeper-contracts' # colors COLOR_R="\033[0;31m" # red @@ -61,7 +61,7 @@ while :; do --local-parity-node) COMPOSE_FILES+=" -f ${COMPOSE_DIR}/parity_client.yml" COMPOSE_FILES+=" -f ${COMPOSE_DIR}/secret_store.yml" - RPC_URL='parity-node' + export RPC_URL='parity-node' export KEEPER_NETWORK_NAME="ocean_poa_net_local" printf $COLOR_Y'Starting with local Parity node...\n\n'$COLOR_RESET ;;