Use consistent naming for the mint id file

This commit is contained in:
Michael Vines
2018-12-06 13:48:59 -08:00
parent c4b8f0cd2f
commit 8f0a1e32d5
2 changed files with 7 additions and 7 deletions

View File

@ -19,8 +19,8 @@ usage() {
exit 1
}
[[ -f "$SOLANA_CONFIG_PRIVATE_DIR"/mint.json ]] || {
echo "$SOLANA_CONFIG_PRIVATE_DIR/mint.json not found, create it by running:"
[[ -f "$SOLANA_CONFIG_PRIVATE_DIR"/mint-id.json ]] || {
echo "$SOLANA_CONFIG_PRIVATE_DIR/mint-id.json not found, create it by running:"
echo
echo " ${here}/setup.sh -t leader"
exit 1
@ -30,7 +30,7 @@ set -ex
trap 'kill "$pid" && wait "$pid"' INT TERM
$solana_drone \
--keypair "$SOLANA_CONFIG_PRIVATE_DIR"/mint.json \
--keypair "$SOLANA_CONFIG_PRIVATE_DIR"/mint-id.json \
> >($drone_logger) 2>&1 &
pid=$!
wait "$pid"