mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 07:07:46 +01:00
lnbits: fix typos
This commit is contained in:
parent
1fbb620c0a
commit
4f6751080c
1 changed files with 7 additions and 7 deletions
|
@ -395,42 +395,42 @@ if [ "$1" = "1" ] || [ "$1" = "on" ]; then
|
||||||
|
|
||||||
if [ "${fundingsource}" == "lnd" ]; then
|
if [ "${fundingsource}" == "lnd" ]; then
|
||||||
if [ "${lnd}" != "on" ]; then
|
if [ "${lnd}" != "on" ]; then
|
||||||
echo "#FAIL: lnd mainnet needs to activated"
|
echo "# FAIL: lnd mainnet needs to be activated"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
elif [ "${fundingsource}" == "tlnd" ]; then
|
elif [ "${fundingsource}" == "tlnd" ]; then
|
||||||
if [ "${tlnd}" != "on" ]; then
|
if [ "${tlnd}" != "on" ]; then
|
||||||
echo "#FAIL: lnd testnet needs to activated"
|
echo "# FAIL: lnd testnet needs to be activated"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
elif [ "${fundingsource}" == "slnd" ]; then
|
elif [ "${fundingsource}" == "slnd" ]; then
|
||||||
if [ "${slnd}" != "on" ]; then
|
if [ "${slnd}" != "on" ]; then
|
||||||
echo "#FAIL: lnd signet needs to activated"
|
echo "# FAIL: lnd signet needs to be activated"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
elif [ "${fundingsource}" == "cl" ]; then
|
elif [ "${fundingsource}" == "cl" ]; then
|
||||||
if [ "${cl}" != "on" ]; then
|
if [ "${cl}" != "on" ]; then
|
||||||
echo "# FAIL: c-lightning mainnet needs to activated"
|
echo "# FAIL: c-lightning mainnet needs to be activated"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
elif [ "${fundingsource}" == "tcl" ]; then
|
elif [ "${fundingsource}" == "tcl" ]; then
|
||||||
if [ "${tcl}" != "on" ]; then
|
if [ "${tcl}" != "on" ]; then
|
||||||
echo "# FAIL: c-lightning testnet needs to activated"
|
echo "# FAIL: c-lightning testnet needs to be activated"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
elif [ "${fundingsource}" == "scl" ]; then
|
elif [ "${fundingsource}" == "scl" ]; then
|
||||||
if [ "${scl}" != "on" ]; then
|
if [ "${scl}" != "on" ]; then
|
||||||
echo "# FAIL: c-lightning signet needs to activated"
|
echo "# FAIL: c-lightning signet needs to be activated"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
else
|
else
|
||||||
echo "# FAIL: unvalid fundig source parameter"
|
echo "# FAIL: invalid funding source parameter"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue