From fe3081d3deaeb131a1998f6236df2e3b098c60b4 Mon Sep 17 00:00:00 2001 From: Blake Johnson Date: Mon, 30 Dec 2024 13:12:59 -0600 Subject: [PATCH] Adding a note to readme and creating bitcoin data directory if it does not exist --- README.md | 2 ++ blast_core/start_bitcoind.sh | 1 + 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index d93b094..abed79c 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,8 @@ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0 export PATH=$PATH:$HOME/go/bin ``` +> You might want to add the two `export` commands to your `.bashrc` file so that new sessions with be able to see go + ### Install blast ```bash git clone https://github.com/bjohnson5/blast.git diff --git a/blast_core/start_bitcoind.sh b/blast_core/start_bitcoind.sh index af9d60f..af32300 100755 --- a/blast_core/start_bitcoind.sh +++ b/blast_core/start_bitcoind.sh @@ -1,5 +1,6 @@ #!/bin/bash +mkdir -p ~/.bitcoin echo "server=1" > ~/.bitcoin/bitcoin.conf echo "regtest=1" >> ~/.bitcoin/bitcoin.conf echo "rpcuser=user" >> ~/.bitcoin/bitcoin.conf