mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-14 09:29:15 +00:00
Update Loop to v0.11.2; Integrate with RTL
This commit is contained in:
parent
3445572de6
commit
4d46661c91
|
@ -263,13 +263,17 @@ fi
|
||||||
if [ ! -f /mnt/hdd/mynode/rtl/RTL-Config.json ]; then
|
if [ ! -f /mnt/hdd/mynode/rtl/RTL-Config.json ]; then
|
||||||
cp -f /usr/share/mynode/RTL-Config.json /mnt/hdd/mynode/rtl/RTL-Config.json
|
cp -f /usr/share/mynode/RTL-Config.json /mnt/hdd/mynode/rtl/RTL-Config.json
|
||||||
fi
|
fi
|
||||||
|
# Force update of RTL config file (increment to force new update)
|
||||||
|
RTL_CONFIG_UPDATE_NUM=1
|
||||||
|
if [ ! -f /mnt/hdd/mynode/rtl/update_settings_$RTL_CONFIG_UPDATE_NUM ]; then
|
||||||
|
cp -f /usr/share/mynode/RTL-Config.json /mnt/hdd/mynode/rtl/RTL-Config.json
|
||||||
|
touch /mnt/hdd/mynode/rtl/update_settings_$RTL_CONFIG_UPDATE_NUM
|
||||||
|
fi
|
||||||
# Update RTL config file to use mynode pw
|
# Update RTL config file to use mynode pw
|
||||||
if [ -f /home/bitcoin/.mynode/.hashedpw ]; then
|
if [ -f /home/bitcoin/.mynode/.hashedpw ]; then
|
||||||
HASH=$(cat /home/bitcoin/.mynode/.hashedpw)
|
HASH=$(cat /home/bitcoin/.mynode/.hashedpw)
|
||||||
sed -i "s/\"multiPassHashed\":.*/\"multiPassHashed\": \"$HASH\",/g" /mnt/hdd/mynode/rtl/RTL-Config.json
|
sed -i "s/\"multiPassHashed\":.*/\"multiPassHashed\": \"$HASH\",/g" /mnt/hdd/mynode/rtl/RTL-Config.json
|
||||||
fi
|
fi
|
||||||
# Update API URLs to HTTPS
|
|
||||||
sed -i "s/http:/https:/g" /mnt/hdd/mynode/rtl/RTL-Config.json
|
|
||||||
|
|
||||||
# BTC RPC Explorer Config
|
# BTC RPC Explorer Config
|
||||||
cp /usr/share/mynode/btc_rpc_explorer_env /opt/mynode/btc-rpc-explorer/.env
|
cp /usr/share/mynode/btc_rpc_explorer_env /opt/mynode/btc-rpc-explorer/.env
|
||||||
|
|
|
@ -14,7 +14,8 @@
|
||||||
"lnImplementation": "LND",
|
"lnImplementation": "LND",
|
||||||
"Authentication": {
|
"Authentication": {
|
||||||
"macaroonPath": "/home/bitcoin/.lnd/data/chain/bitcoin/mainnet",
|
"macaroonPath": "/home/bitcoin/.lnd/data/chain/bitcoin/mainnet",
|
||||||
"configPath": "/home/bitcoin/.lnd/lnd.conf"
|
"configPath": "/home/bitcoin/.lnd/lnd.conf",
|
||||||
|
"swapMacaroonPath": "/mnt/hdd/mynode/loop/mainnet"
|
||||||
},
|
},
|
||||||
"Settings": {
|
"Settings": {
|
||||||
"userPersona": "MERCHANT",
|
"userPersona": "MERCHANT",
|
||||||
|
@ -22,8 +23,8 @@
|
||||||
"themeColor": "PURPLE",
|
"themeColor": "PURPLE",
|
||||||
"channelBackupPath": "/mnt/hdd/mynode/rtl_backup/",
|
"channelBackupPath": "/mnt/hdd/mynode/rtl_backup/",
|
||||||
"enableLogging": true,
|
"enableLogging": true,
|
||||||
"lnServerUrl": "https://localhost:10080/v1",
|
"lnServerUrl": "https://localhost:10080",
|
||||||
"swapServerUrl": "https://localhost:8081/v1",
|
"swapServerUrl": "https://localhost:8081",
|
||||||
"fiatConversion": false
|
"fiatConversion": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,9 +8,7 @@ LND_VERSION="v0.11.1-beta"
|
||||||
LND_VERSION_FILE=/home/bitcoin/.mynode/lnd_version
|
LND_VERSION_FILE=/home/bitcoin/.mynode/lnd_version
|
||||||
LND_LATEST_VERSION_FILE=/home/bitcoin/.mynode/lnd_version_latest
|
LND_LATEST_VERSION_FILE=/home/bitcoin/.mynode/lnd_version_latest
|
||||||
|
|
||||||
# DELAY UPGRADING TO v0.10.0+ UNTIL RTL SUPPORTS MACAROON AUTH
|
LOOP_VERSION="v0.11.2-beta"
|
||||||
# https://github.com/Ride-The-Lightning/RTL/issues/515
|
|
||||||
LOOP_VERSION="v0.9.0-beta"
|
|
||||||
LOOP_VERSION_FILE=/home/bitcoin/.mynode/loop_version
|
LOOP_VERSION_FILE=/home/bitcoin/.mynode/loop_version
|
||||||
LOOP_LATEST_VERSION_FILE=/home/bitcoin/.mynode/loop_version_latest
|
LOOP_LATEST_VERSION_FILE=/home/bitcoin/.mynode/loop_version_latest
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user