Clean up comments

This commit is contained in:
Ethan Frey
2017-08-07 18:50:33 +02:00
parent 483ed6d87a
commit 0133723aca
7 changed files with 16 additions and 15 deletions
+2 -2
View File
@@ -20,14 +20,14 @@ oneTimeSetUp() {
export EYE_HOME=${SERVE_DIR}
${SERVER_EXE} init --chain-id=$CHAIN_ID >>$SERVER_LOG
startServer $SERVE_DIR $SERVER_LOG
if [ $? != 0 ]; then return 1; fi
[ $? = 0 ] || return 1
# Set up client - make sure you use the proper prefix if you set
# a custom CLIENT_EXE
export EYE_HOME=${BASE_DIR}/client
initClient $CHAIN_ID
if [ $? != 0 ]; then return 1; fi
[ $? = 0 ] || return 1
printf "...Testing may begin!\n\n\n"
}