mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 18:02:49 +00:00
11 lines
172 B
Bash
11 lines
172 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
source /usr/share/mynode/mynode_config.sh
|
||
|
|
||
|
# Check if testnet
|
||
|
if [ -f $IS_TESTNET_ENABLED_FILE ]; then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# We are on mainnet (exit success)
|
||
|
exit 0
|