Skip to content

Commit

Permalink
oops: Add missing brackets start script
Browse files Browse the repository at this point in the history
  • Loading branch information
wiz committed Jan 19, 2025
1 parent 96d27c8 commit 162516b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions start
Original file line number Diff line number Diff line change
Expand Up @@ -169,23 +169,23 @@ do
ELECTRUM_TXS_LIMIT=9000
MAIN_LOOP_DELAY=14000
fi
if [ "${NODENAME}" = "node202" && "${LOCATION}" = "va1" ];then
if [ "${NODENAME}" = "node202" ] && [ "${LOCATION}" = "va1" ];then
UTXOS_LIMIT=9000
ELECTRUM_TXS_LIMIT=9000
fi
if [ "${NODENAME}" = "node203" && "${LOCATION}" = "va1" ];then
if [ "${NODENAME}" = "node203" ] && [ "${LOCATION}" = "va1" ];then
UTXOS_LIMIT=9000
ELECTRUM_TXS_LIMIT=9000
fi
if [ "${NODENAME}" = "node204" && "${LOCATION}" = "va1" ];then
if [ "${NODENAME}" = "node204" ] && [ "${LOCATION}" = "va1" ];then
UTXOS_LIMIT=9000
ELECTRUM_TXS_LIMIT=9000
fi
if [ "${NODENAME}" = "node205" && "${LOCATION}" = "va1" ];then
if [ "${NODENAME}" = "node205" ] && [ "${LOCATION}" = "va1" ];then
UTXOS_LIMIT=9000
ELECTRUM_TXS_LIMIT=9000
fi
if [ "${NODENAME}" = "node206" && "${LOCATION}" = "va1" ];then
if [ "${NODENAME}" = "node206" ] && [ "${LOCATION}" = "va1" ];then
UTXOS_LIMIT=9000
ELECTRUM_TXS_LIMIT=9000
fi
Expand Down

0 comments on commit 162516b

Please sign in to comment.