16 lines
328 B
Bash
16 lines
328 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
set +x
|
|
test $SPAMMER_COMMAND
|
|
set +e
|
|
|
|
echo "Running tx spammer"
|
|
./tx_spammer ${SPAMMER_COMMAND} --config=config.toml --log-file=${LOG_FILE} --log-level=${LOG_LEVEL}
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "tx spammer ran successfully"
|
|
else
|
|
echo "tx spammer ran with error. Is the config file correct?"
|
|
exit 1
|
|
fi |