mynode/rootfs/standard/usr/bin/mynode_post_bitcoin.sh
2021-03-30 22:09:55 -05:00

30 lines
810 B
Bash
Executable File

#!/bin/bash
source /usr/share/mynode/mynode_config.sh
set -x
WALLET_FOLDER="/mnt/hdd/mynode/bitcoin/wallets"
if [ -f $IS_TESTNET_ENABLED_FILE ]; then
WALLET_FOLDER="/mnt/hdd/mynode/bitcoin/wallets"
fi
sleep 60s
# Give admin the ability to access the BTC cookie
chmod 640 /mnt/hdd/mynode/bitcoin/.cookie
if [ -f /mnt/hdd/mynode/bitcoin/testnet3/.cookie ]; then
mkdir -p /mnt/hdd/mynode/bitcoin/testnet3
cp -f /mnt/hdd/mynode/bitcoin/testnet3/.cookie /home/admin/.bitcoin/testnet3/.cookie
chown -R admin:admin /home/admin/.bitcoin/testnet3
fi
# Make default wallets
if [ ! -d ${WALLET_FOLDER}/joinmarket_wallet.dat ]; then
bitcoin-cli createwallet joinmarket_wallet.dat > /dev/null 2>&1 || true
fi
bitcoin-cli loadwallet joinmarket_wallet.dat > /dev/null 2>&1 || true
# Sync FS
sync