From 27002abe9c83add999bb021fe7a1f236bb83c591 Mon Sep 17 00:00:00 2001 From: Sebastian Gerske Date: Mon, 26 Aug 2019 12:44:14 +0200 Subject: [PATCH] - disable faucet on kovan, it is not our ether --- start_ocean.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/start_ocean.sh b/start_ocean.sh index debfc8a..92f21ea 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -244,12 +244,14 @@ while :; do export NODE_COMPOSE_FILE="${COMPOSE_DIR}/nodes/kovan_node.yml" COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/keeper_contracts.yml/}" COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/secret_store.yml/}" + COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/faucet.yml/}" export KEEPER_MNEMONIC='' export KEEPER_NETWORK_NAME="kovan" export KEEPER_DEPLOY_CONTRACTS="false" export ACL_CONTRACT_ADDRESS="$(get_acl_address ${KEEPER_VERSION})" printf $COLOR_Y'Starting with local Kovan node...\n\n'$COLOR_RESET printf $COLOR_Y'Starting without Secret Store...\n\n'$COLOR_RESET + printf $COLOR_Y'Starting without faucet...\n\n'$COLOR_RESET ;; # spins up a new ganache blockchain --local-ganache-node)