vls-container/lightningd/entrypoint.sh
Lakshya Singh 0bfcb691f2
network: remove bitcoin mainnet setup
- not ready for mainnet yet
Signed-off-by: Lakshya Singh <lakshay.singh1108@gmail.com>
2023-10-29 00:30:27 +05:30

17 lines
316 B
Bash
Executable File

#!/bin/sh
set -e
cp -u /testnet-config ${LIGHTNINGD_DATA}/testnet-config
cp -u /regtest-config ${LIGHTNINGD_DATA}/regtest-config
export GREENLIGHT_VERSION=$(lightningd --version)
if [ $(echo "$1" | cut -c1) = "-" ]; then
echo "$0: assuming arguments for lightningd"
set -- lightningd "$@"
fi
echo
exec "$@"