mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 22:58:43 +01:00
updated amazon.de shopping list
This commit is contained in:
parent
4cafadbc1c
commit
e20b7015cc
2 changed files with 8 additions and 8 deletions
12
README.md
12
README.md
|
@ -22,14 +22,14 @@ Fastest and cheapest way to get your own Lightning Node running - on a Raspberry
|
||||||
|
|
||||||
*The RaspiBlitz software is build and tested for the following Hardware set that you can buy cheap on Amazon.de:*
|
*The RaspiBlitz software is build and tested for the following Hardware set that you can buy cheap on Amazon.de:*
|
||||||
|
|
||||||
* RaspBerry Pi 3 (31,99 EUR) https://www.amazon.de/dp/B01CD5VC92
|
* RaspBerry Pi 3 (34,99 EUR) https://www.amazon.de/dp/B07BDR5PDW
|
||||||
* Micro SD-Card 16GB (7,11 EUR) https://www.amazon.de/dp/B0162YQEIE
|
* Micro SD-Card 16GB (7,99 EUR) https://www.amazon.de/gp/product/B073K14CVB/
|
||||||
* Power >=3A (9,29 EUR) https://www.amazon.de/dp/B01E75SB2C
|
* Power >=3A (9,99 EUR) https://www.amazon.de/gp/product/B078567K85
|
||||||
* 1TB Hard Drive (49,99 EUR) https://www.amazon.de/dp/B00KWHJY7Q
|
* 1TB Hard Drive (44,98 EUR) https://www.amazon.de/dp/B07997KKSK?th=1
|
||||||
* Case (9,36 EUR) https://www.amazon.de/dp/B0173GQF8Y
|
* Case (9,36 EUR) https://www.amazon.de/dp/B0173GQF8Y
|
||||||
* LCD-Display (19,58 EUR) https://www.amazon.de/dp/B01JRUH0CY
|
* LCD-Display (16,88 EUR) https://www.amazon.de/gp/product/B06X191RX7
|
||||||
|
|
||||||
**Total Price: 127,31 EUR** (thats under 150 USD)
|
**Total Price: 124,19 EUR** (thats under 150 USD)
|
||||||
|
|
||||||
Amazon shopping lists for different countries:
|
Amazon shopping lists for different countries:
|
||||||
[ [USA](shoppinglist_usa.md) ] [ [UK](shoppinglist_uk.md) ] [ [FR](shoppinglist_fr.md) ] [ [China](shoppinglist_cn.md) ]
|
[ [USA](shoppinglist_usa.md) ] [ [UK](shoppinglist_uk.md) ] [ [FR](shoppinglist_fr.md) ] [ [China](shoppinglist_cn.md) ]
|
||||||
|
|
|
@ -163,7 +163,7 @@ ln_baseInfo="-"
|
||||||
ln_channelInfo="\n"
|
ln_channelInfo="\n"
|
||||||
ln_external=""
|
ln_external=""
|
||||||
|
|
||||||
wallet_unlocked=$(sudo tail -n 1 /mnt/hdd/lnd/logs/${network}/${chain}net/lnd.log | grep -c unlock)
|
wallet_unlocked=$(sudo tail -n 1 /mnt/hdd/lnd/logs/${network}/${chain}net/lnd.log 2> /dev/null | grep -c unlock)
|
||||||
if [ "$wallet_unlocked" -gt 0 ] ; then
|
if [ "$wallet_unlocked" -gt 0 ] ; then
|
||||||
alias_color="${color_red}"
|
alias_color="${color_red}"
|
||||||
ln_alias="Wallet Locked"
|
ln_alias="Wallet Locked"
|
||||||
|
@ -177,7 +177,7 @@ else
|
||||||
if [ ${#ln_getInfo} -eq 0 ]; then
|
if [ ${#ln_getInfo} -eq 0 ]; then
|
||||||
ln_baseInfo="${color_red} Not Started | Not Ready Yet"
|
ln_baseInfo="${color_red} Not Started | Not Ready Yet"
|
||||||
else
|
else
|
||||||
item=$(sudo -u bitcoin tail -n 100 /mnt/hdd/lnd/logs/${network}/${chain}net/lnd.log | grep "(height" | tail -n1 | awk '{print $10} {print $11} {print $12}' | tr -dc '0-9')
|
item=$(sudo -u bitcoin tail -n 100 /mnt/hdd/lnd/logs/${network}/${chain}net/lnd.log 2> /dev/null | grep "(height" | tail -n1 | awk '{print $10} {print $11} {print $12}' | tr -dc '0-9')
|
||||||
total=$(sudo -u bitcoin ${network}-cli -datadir=/home/bitcoin/.${network} getblockchaininfo | jq -r '.blocks')
|
total=$(sudo -u bitcoin ${network}-cli -datadir=/home/bitcoin/.${network} getblockchaininfo | jq -r '.blocks')
|
||||||
ln_baseInfo="${color_red} waiting for chain sync"
|
ln_baseInfo="${color_red} waiting for chain sync"
|
||||||
if [ ${#item} -gt 0 ]; then
|
if [ ${#item} -gt 0 ]; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue