From 1b8ef5059f940591e4f0d5ffaad8e847d5d8fff0 Mon Sep 17 00:00:00 2001 From: Raneet Debnath Date: Thu, 17 Nov 2022 18:20:53 +0530 Subject: [PATCH] cleanup --- .github/workflows/ci.yml | 1 - integration-tests/smoke_test.sh | 5 ----- 2 files changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8dfd9953fb..9dcddf16c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,6 @@ on: - "master" - "qa" - "develop" - - "raneet10/pos-535" # RMV pull_request: branches: - "**" diff --git a/integration-tests/smoke_test.sh b/integration-tests/smoke_test.sh index 5a60eb04fb..9bd5cebb40 100644 --- a/integration-tests/smoke_test.sh +++ b/integration-tests/smoke_test.sh @@ -3,9 +3,6 @@ set -e balanceInit=$(docker exec bor0 bash -c "bor attach /root/.bor/data/bor.ipc -exec 'Math.round(web3.fromWei(eth.getBalance(eth.accounts[0])))'") -#delay=600 -#echo "Wait ${delay} seconds for state-sync..." -#sleep $delay stateSyncFound="false" checkpointFound="false" @@ -23,7 +20,6 @@ do if (( $balance <= $balanceInit )); then echo "Balance in bor network has not increased. Waiting for state sync..." - #exit 1 else echo "State Sync occured!" stateSyncFound="true" @@ -33,7 +29,6 @@ do if [ $checkpointID == "null" ]; then echo "Checkpoint didn't arrive yet! Waiting..." - #exit 1 else echo "Found checkpoint ID:" $checkpointID checkpointFound="true"