mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 04:09:23 +00:00
7 lines
147 B
Bash
Executable File
7 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
if [[ -z $VALIDATOR ]]; then
|
|
serai-node --chain $CHAIN --name $NAME
|
|
else
|
|
serai-node --chain $CHAIN --name $NAME --validator
|
|
fi
|