@ -44,9 +44,15 @@ The RaspiBlitz is build from the following parts:
**All together under 160 USD / 140 EUR (depending on country & shop)**
**All together under 160 USD / 140 EUR (depending on country & shop)**
## Amazon Shopping Lists
### Buy a ready-2-go RaspiBlitz (Germany, EU and International)
These are the community currated shopping lists based on country:
If you like to support the RaspiBlitz project you can order a ready-2-go RaspiBlitz or a all-you-need-hardwareset for yourself or for your RaspiBlitz workshop from [raspiblitz.com](https://raspiblitz.com) *(pay with Bitcoin/Lightning or with deprecated PayPal/CreditCard)*
*To list your local/national RaspiBlitz shop here or on raspiblitz.com, get in contact: christian@fulmo.org*
### International Shopping Lists (buy parts & build it yourself)
The cheapest way is to buy ans assemble the single parts yourself. These are the community currated shopping lists based on country:
@ -121,6 +121,8 @@ See the shopping list on the RaspiBlitz Github README - you need to buy all of t
From experience start ordering two weeks before the workshop (if you need to assembly) and minimum one week if you handing out hardware kits - even if you have Amazon Prime. There is always a shipment comming late - its a lot of packages.
From experience start ordering two weeks before the workshop (if you need to assembly) and minimum one week if you handing out hardware kits - even if you have Amazon Prime. There is always a shipment comming late - its a lot of packages.
If you like to support the RaspiBlitz project you can order a ready-2-go RaspiBlitz or a all-you-need-hardwareset for your RaspiBlitz workshop from [raspiblitz.com](https://raspiblitz.com)
## Instruct Participants to bring Hardware
## Instruct Participants to bring Hardware
If you run the scenario of people bringing their own hardware. Make sure to let them know at least a week before the event so that there is enough time for online ordering. Also make sure that especially the power supply needs to provide 3A and a stable current (big fat with a thick cable is good) - because thats the most often error source if people just reuse some old weak power supply.
If you run the scenario of people bringing their own hardware. Make sure to let them know at least a week before the event so that there is enough time for online ordering. Also make sure that especially the power supply needs to provide 3A and a stable current (big fat with a thick cable is good) - because thats the most often error source if people just reuse some old weak power supply.
@ -80,10 +80,10 @@ if [ "${state}" = "presync" ]; then
# stopping the pre-sync
# stopping the pre-sync
echo""
echo""
# analyse if blockchain was detected broken by pre-sync
# analyse if blockchain was detected broken by pre-sync
blockchainBroken=$(sudo tail /mnt/hdd/bitcoin/debug.log | grep -c "Please restart with -reindex or -reindex-chainstate to recover.")
blockchainBroken=$(sudo tail /mnt/hdd/bitcoin/debug.log 2>/dev/null | grep -c "Please restart with -reindex or -reindex-chainstate to recover.")
if[${blockchainBroken} -eq 1];then
if[${blockchainBroken} -eq 1];then
# dismiss if its just a date thing
# dismiss if its just a date thing
futureBlock=$(sudo tail /mnt/hdd/bitcoin/debug.log | grep "Please restart with -reindex or -reindex-chainstate to recover."| grep -c "block database contains a block which appears to be from the future")
futureBlock=$(sudo tail /mnt/hdd/bitcoin/debug.log 2>/dev/null | grep "Please restart with -reindex or -reindex-chainstate to recover."| grep -c "block database contains a block which appears to be from the future")
reindex=$(sudo cat /mnt/hdd/${network}/debug.log | grep -c 'Please restart with -reindex or -reindex-chainstate to recover')
reindex=$(sudo cat /mnt/hdd/${network}/debug.log 2>/dev/null | grep -c 'Please restart with -reindex or -reindex-chainstate to recover')
if[${reindex} -gt 0];then
if[${reindex} -gt 0];then
# dismiss if its just a date thing
# dismiss if its just a date thing
futureBlock=$(sudo tail /mnt/hdd/${network}/debug.log | grep "Please restart with -reindex or -reindex-chainstate to recover"| grep -c "block database contains a block which appears to be from the future")
futureBlock=$(sudo tail /mnt/hdd/${network}/debug.log 2>/dev/null | grep "Please restart with -reindex or -reindex-chainstate to recover"| grep -c "block database contains a block which appears to be from the future")