blob: a89258013190771724a1aa128bc685a508dc8912 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
if [ "$ROLE" = "validator" ]; then
exec ./dexcon-simulation -config config.toml
elif [ "$ROLE" = "peer-server" ]; then
exec ./dexcon-simulation-peer-server -config config.toml
fi
|