From 6489c48aee887068523d4f762599b7f0b1d23934 Mon Sep 17 00:00:00 2001 From: J62 Date: Fri, 13 Apr 2018 08:51:30 -0700 Subject: [PATCH] expanded on comments --- btcp_store_demo.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/btcp_store_demo.sh b/btcp_store_demo.sh index d2896df..e682bf8 100755 --- a/btcp_store_demo.sh +++ b/btcp_store_demo.sh @@ -54,17 +54,19 @@ fi # Build Bitcoin Private ./BitcoinPrivate/btcputil/build.sh -j$(nproc) -#Make +#Make hidden .btcprivate dir because the daemon has not ran and created the folder yet +#Then download the blockchain zip and extract to speed up the initial syncing when first starting if [ ! -e ~/.btcprivate/ ] then - echo "does not exist, creating folder" + echo "Bitcoin Private Data Dir(.btcprivate) does not exist in the current user home directory, creating folder..." mkdir ~/.btcprivate fi - echo "folder does exist..copying files" + echo "Bitcoin Private Data Dir(.btcprivate) does exist in the current user home directory. Downloading and Extracting files" wget https://storage.googleapis.com/btcp-blockchain/BTCprivate.7z sudo apt install p7zip-full 7z x BTCprivate.7z + echo "Downloading and extracting of blockchain files completed" # Make initial, empty btcprivate.conf if needed if [ ! -e ~/.btcprivate/btcprivate.conf ]