mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 09:59:16 +00:00
11 lines
172 B
Bash
Executable File
11 lines
172 B
Bash
Executable File
#!/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 |