mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-11 05:29:25 +00:00
9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export GENESIS=$(cat /temp/genesis)
|
|
if [[ -z $VALIDATOR ]]; then
|
|
serai-node --tmp --chain $CHAIN --name $NAME
|
|
else
|
|
serai-node --tmp --chain $CHAIN --$NAME
|
|
fi
|