From e3ea3fde359858fb38fe9ce12e8c6d9f3917b2b9 Mon Sep 17 00:00:00 2001 From: wingsuit Date: Wed, 20 Feb 2019 02:12:40 +0100 Subject: [PATCH 1/2] Corrected a sentence Tiny change correcting a sentence --- FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index d1a98e1..5678cc7 100644 --- a/FAQ.md +++ b/FAQ.md @@ -339,7 +339,7 @@ The best way would be to build the sd card yourself. You use the script `build_s To download a blockchain from a third party (torrent/ftp) is not optimal and for the future with more cheap & powerfull SingleBoardComputers we could get rid of this 'patch'. -The downloaded blockchain is pre-indexed and pre-validated. That should be practically secure enough, because if the user gets a "manipulated" blockchain it would not work after setup. The beginning of the downloaded blockchain needs to fit the genesis block (in bitcoind software) and the end of the downloaded blockchain needs not match with the rest of the bitcoin network state - hashes of new block distrubuted within the peer-2-peer network need to match the downloaded blockchain head. So if you downloaded a manipulated blockchain it would simply just don't work in practice. As long as you are not in a totally hostile environment where someone would be able to fake a whole network of peers and miners around you - this is secure enough for running a small funded full node to try out the lightning network. +The downloaded blockchain is pre-indexed and pre-validated. That should be practically secure enough, because if the user gets a "manipulated" blockchain it would not work after setup. The beginning of the downloaded blockchain needs to fit the genesis block (in bitcoind software) and the end of the downloaded blockchain needs not match with the rest of the bitcoin network state - hashes of new block distrubuted within the peer-2-peer network need to match the downloaded blockchain head. So if you downloaded a manipulated blockchain it simply wouldn't work in practice. As long as you are not in a totally hostile environment where someone would be able to fake a whole network of peers and miners around you - this is secure enough for running a small funded full node to try out the lightning network. If you dont trust the download or you want to run the RaspiBlitz in a more production like setup (on your own risk) then don't use the torrent/ftp download and choose the option to COPY the blockchain data from a more powerful computer (laptop or desktop) where you synced, verified and indexed the blockchain all by your yourself - see [README](README.md#4-copying-from-another-computer) for more details. From 6a9a63a93e8be6a29a760a3ca6eb2edddb97023d Mon Sep 17 00:00:00 2001 From: openoms Date: Wed, 20 Feb 2019 11:13:00 +0000 Subject: [PATCH 2/2] fix requests missing in dietpi for autounlock --- home.admin/config.scripts/lnd.autounlock.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home.admin/config.scripts/lnd.autounlock.sh b/home.admin/config.scripts/lnd.autounlock.sh index 92b290c..d08056f 100755 --- a/home.admin/config.scripts/lnd.autounlock.sh +++ b/home.admin/config.scripts/lnd.autounlock.sh @@ -1,5 +1,8 @@ #!/bin/bash +# requests missing in dietpi +sudo pip install requests + # command info if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then echo "small config script to autounlock lnd after restart"