Skip to content

Commit 5d7041e

Browse files
committed
Updating script to use correct submodule
1 parent 47453d0 commit 5d7041e

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

start-graph.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
####### CONFIG #######
55
######################
66
RPC_ENDPOINT="http://localhost:8545"
7-
TOTAL_WAITING_TIME=45 # seconds
7+
TOTAL_WAITING_TIME=200 # seconds
88
WAIT_FOR_INPUT=true
99
ROOT_DIR=$(pwd)
1010
######################
@@ -60,7 +60,6 @@ function doneLoop {
6060
function start {
6161
echo "####### CLEANUP #######"
6262
sudo rm -rf data ganache-data
63-
sudo rm -f ./contracts/.openzeppelin/dev-321.json
6463

6564
echo "####### DOCKER-COMPOSE #######"
6665
docker-compose up 2>&1 > /dev/null &
@@ -80,11 +79,11 @@ function start {
8079
done
8180

8281
echo "####### DEPLOYING CONTRACTS #######"
83-
cd ./contracts && truffle migrate --reset --network graphTesting
82+
cd ./async-contracts && truffle migrate --reset --network graphTesting
8483
if [ "$?" -ne 0 ];
8584
then
8685
echo "ERROR: Could not deploy contracts successfully"
87-
killAndExit
86+
# killAndExit
8887
fi
8988
cd ../graph
9089

0 commit comments

Comments
 (0)