* remove client.sh from snap * default to ephemeral instead of ~/.config key * rework CLI for bench-tps * remote multinode-demo stuff from remote-client.sh * remove multinode-demo from remote-sanity and localnet-sanity
22 lines
363 B
Bash
Executable File
22 lines
363 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
here=$(dirname "$0")
|
|
# shellcheck source=multinode-demo/common.sh
|
|
source "$here"/common.sh
|
|
|
|
usage() {
|
|
if [[ -n $1 ]]; then
|
|
echo "$*"
|
|
echo
|
|
fi
|
|
echo "usage: $0 [extra args]"
|
|
echo
|
|
echo " Run bench-tps "
|
|
echo
|
|
echo " extra args: additional arguments are pass along to solana-bench-tps"
|
|
echo
|
|
exit 1
|
|
}
|
|
|
|
$solana_bench_tps "$@"
|