mirror of
https://github.com/aljazceru/clArk.git
synced 2025-12-17 05:04:21 +01:00
14 lines
260 B
Bash
Executable File
14 lines
260 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
datadir=./test/bitcoindatadir
|
|
mkdir -p ${datadir}
|
|
conf_file=${datadir}/bitcoin.conf
|
|
|
|
# Check if bitcoin.conf exists, if not, create it
|
|
if [ ! -f "$conf_file" ]; then
|
|
touch "$conf_file"
|
|
fi
|
|
|
|
bitcoind -regtest -datadir=${datadir} -server -txindex
|