From c48be04c37ff1c4dbcfdce6fff38912bd9db1b77 Mon Sep 17 00:00:00 2001 From: ssallam Date: Wed, 21 Oct 2020 16:54:14 +0200 Subject: [PATCH 1/2] add option to allow skipping contract deployment. --- start_ocean.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/start_ocean.sh b/start_ocean.sh index 9cea66c..4b8b215 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -199,6 +199,10 @@ while :; do COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/dashboard.yml/}" printf $COLOR_Y'Starting without Dashboard ...\n\n'$COLOR_RESET ;; + --skip-deploy) + export DEPLOY_CONTRACTS=false + printf $COLOR_Y'Ocean contracts will not be deployed, the last deployment (if any) will be intact ...\n\n'$COLOR_RESET + ;; ################################################# # Cleaning switches ################################################# From ea9699a24bb169cd93189a01ffc7d5da65663587 Mon Sep 17 00:00:00 2001 From: Alex Coseru Date: Thu, 22 Oct 2020 15:40:07 +0300 Subject: [PATCH 2/2] Update start_ocean.sh --- start_ocean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start_ocean.sh b/start_ocean.sh index 4b8b215..91be4ee 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -30,7 +30,7 @@ COMPOSE_DIR="${DIR}/compose-files" export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v3} export PROVIDER_VERSION=${PROVIDER_VERSION:-latest} -export CONTRACTS_VERSION=${CONTRACTS_VERSION:-v0.5.5} +export CONTRACTS_VERSION=${CONTRACTS_VERSION:-v0.5.7} export PROJECT_NAME="ocean" export FORCEPULL="false"